From a93350a415cf36fc4e4b570e5abf2cc4e68c1b5d Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 16 May 2000 19:18:03 +0000 Subject: [PATCH] Use CPU_ALIGNMENT not 4. --- c/src/exec/score/macros/rtems/score/address.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c/src/exec/score/macros/rtems/score/address.inl b/c/src/exec/score/macros/rtems/score/address.inl index 379aaca6cc..2f14aa633a 100644 --- a/c/src/exec/score/macros/rtems/score/address.inl +++ b/c/src/exec/score/macros/rtems/score/address.inl @@ -52,7 +52,7 @@ */ #define _Addresses_Is_aligned( _address ) \ - ( ( (unsigned32)(_address) % 4 ) == 0 ) + ( ( (unsigned32)(_address) % CPU_ALIGNMENT ) == 0 ) /*PAGE *