From 611314a17ddd1e3f619e44ab9a745751fdafb2a9 Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Fri, 15 May 1992 05:02:54 +0000 Subject: [PATCH] entered into RCS From-SVN: r984 --- gcc/config/a29k/unix.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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 -- 2.30.2