From 377b190270269d05271ecc54c3f55ab2113fdabe Mon Sep 17 00:00:00 2001 From: Jeff Johnston Date: Wed, 16 Dec 2009 21:35:51 +0000 Subject: 2009-12-16 Joel Sherrill * libc/sys/rtems/machine/param.h: Only use sizeof(double) -1 for ALIGNBYTES on SPARC. --- newlib/libc/sys/rtems/machine/param.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'newlib/libc/sys/rtems/machine/param.h') diff --git a/newlib/libc/sys/rtems/machine/param.h b/newlib/libc/sys/rtems/machine/param.h index e4dd271fb..74891f504 100644 --- a/newlib/libc/sys/rtems/machine/param.h +++ b/newlib/libc/sys/rtems/machine/param.h @@ -19,7 +19,11 @@ * for all data types (int, long, ...). The result is unsigned int * and must be cast to any desired pointer type. */ +#if defined(__sparc__) #define ALIGNBYTES (sizeof(double) - 1) +#else +#define ALIGNBYTES (sizeof(int) - 1) +#endif #define ALIGN(p) (((unsigned)(p) + ALIGNBYTES) & ~ALIGNBYTES) #define PAGE_SHIFT 12 /* LOG2(PAGE_SIZE) */ -- cgit v1.2.3