MOXA linux-2.6.x / linux-2.6.19-uc1 from UC-7110-LX-BOOTLOADER-1.9_VERSION-4.2.tgz
[linux-2.6.19-moxart.git] / include / linux / compiler-intel.h
blob1d1c3ceaff4ed62b6b2e971a0ca7588f969c8431
1 /* Never include this file directly. Include <linux/compiler.h> instead. */
3 #ifdef __ECC
5 /* Some compiler specific definitions are overwritten here
6 * for Intel ECC compiler
7 */
9 #include <asm/intrinsics.h>
11 /* Intel ECC compiler doesn't support gcc specific asm stmts.
12 * It uses intrinsics to do the equivalent things.
14 #undef barrier
15 #undef RELOC_HIDE
17 #define barrier() __memory_barrier()
19 #define RELOC_HIDE(ptr, off) \
20 ({ unsigned long __ptr; \
21 __ptr = (unsigned long) (ptr); \
22 (typeof(ptr)) (__ptr + (off)); })
24 #endif