From dc80018239b318ba7bb80c8c1e7010165dabe91b Mon Sep 17 00:00:00 2001 From: Olaf Barthel Date: Tue, 15 Mar 2005 11:18:32 +0000 Subject: [PATCH] - Re-added the long word alignment check for MC68020 I didn't commit at home. git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14889 87f5fb63-7c3d-0410-a384-fd976d0f7a62 --- library/string_headers.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/library/string_headers.h b/library/string_headers.h index 1f5e782..3c6ca67 100644 --- a/library/string_headers.h +++ b/library/string_headers.h @@ -1,5 +1,5 @@ /* - * $Id: string_headers.h,v 1.3 2005-01-02 09:07:19 obarthel Exp $ + * $Id: string_headers.h,v 1.4 2005-03-15 11:18:32 obarthel Exp $ * * :ts=4 * @@ -67,9 +67,9 @@ /* Address is aligned to a long word boundary. For an 68030 and beyond the alignment does not matter. */ #if defined(M68020) -#define IS_LONG_ALIGNED(a) ((((unsigned long)(a)) & 3) == 0) -#else #define IS_LONG_ALIGNED(a) (1) +#else +#define IS_LONG_ALIGNED(a) ((((unsigned long)(a)) & 3) == 0) #endif /* M68020 */ /****************************************************************************/