X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=cfg%2Fmacros.h;h=ded2261bd9d64de06631508109a5e8bd293a30bc;hb=dd10467603da0be5d35d91bae7c62b0079128d09;hp=41f0b9d3faf3071141e5fa6dd2ef46cac21a468f;hpb=22853ba2260f6dd8dc0e5ccafb95e75fc36cfa29;p=bertos.git diff --git a/cfg/macros.h b/cfg/macros.h index 41f0b9d3..ded2261b 100755 --- a/cfg/macros.h +++ b/cfg/macros.h @@ -2,7 +2,7 @@ * \file * * * \brief Common and handy function macros @@ -14,6 +14,12 @@ /*#* *#* $Log$ + *#* Revision 1.6 2006/02/10 12:36:57 bernie + *#* Pacify IAR warnings for side-effects. + *#* + *#* Revision 1.5 2005/11/04 16:20:01 bernie + *#* Fix reference to README.devlib in header. + *#* *#* Revision 1.4 2005/07/03 15:19:09 bernie *#* Doxygen fix. *#* @@ -134,7 +140,13 @@ } while (0) #else /* !COMPILER_TYPEOF */ /* Sub-optimal implementation that only works with integral types. */ - #define SWAP(a, b) ((a) ^= (b) ^= (a) ^= (b)) + #define SWAP(a, b) \ + do { \ + (a) ^= (b); \ + (b) ^= (a); \ + (a) ^= (b); \ + } while (0) + #endif /* COMPILER_TYPEOF */ #ifndef BV