compiler-intel.h

来自「Axis 221 camera embedded programing inte」· C头文件 代码 · 共 25 行

H
25
字号
/* Never include this file directly.  Include <linux/compiler.h> instead.  */#ifdef __ECC/* Some compiler specific definitions are overwritten here * for Intel ECC compiler */#include <asm/intrinsics.h>/* Intel ECC compiler doesn't support gcc specific asm stmts. * It uses intrinsics to do the equivalent things. */#undef barrier#undef RELOC_HIDE#define barrier() __memory_barrier()#define RELOC_HIDE(ptr, off)					\  ({ unsigned long __ptr;					\     __ptr = (unsigned long) (ptr);				\    (typeof(ptr)) (__ptr + (off)); })#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?