From: Richard Stallman Date: Fri, 15 May 1992 05:02:54 +0000 (+0000) Subject: entered into RCS X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=611314a17ddd1e3f619e44ab9a745751fdafb2a9;p=gcc.git entered into RCS From-SVN: r984 --- diff --git a/gcc/config/a29k/unix.h b/gcc/config/a29k/unix.h index 7a6e489d72a..02bd18c04a2 100644 --- a/gcc/config/a29k/unix.h +++ b/gcc/config/a29k/unix.h @@ -48,3 +48,16 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #undef BIGGEST_ALIGNMENT #define BIGGEST_ALIGNMENT 64 + +#if 0 /* This would be needed except that the 29k doesn't have strict + alignment requirements. */ + +#define FUNCTION_ARG_BOUNDARY(MODE, TYPE) \ + (((TYPE) != 0) \ + ? ((TYPE_ALIGN(TYPE) <= PARM_BOUNDARY) \ + ? PARM_BOUNDARY \ + : TYPE_ALIGN(TYPE)) \ + : ((GET_MODE_ALIGNMENT(MODE) <= PARM_BOUNDARY) \ + ? PARM_BOUNDARY \ + : GET_MODE_ALIGNMENT(MODE))) +#endif