Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame^] | 1 | /* Never include this file directly. Include <linux/compiler.h> instead. */ |
| 2 | |
| 3 | /* These definitions are for GCC v4.x. */ |
| 4 | #include <linux/compiler-gcc.h> |
| 5 | |
| 6 | #define inline inline __attribute__((always_inline)) |
| 7 | #define __inline__ __inline__ __attribute__((always_inline)) |
| 8 | #define __inline __inline __attribute__((always_inline)) |
| 9 | #define __deprecated __attribute__((deprecated)) |
| 10 | #define __attribute_used__ __attribute__((__used__)) |
| 11 | #define __attribute_pure__ __attribute__((pure)) |
| 12 | #define __attribute_const__ __attribute__((__const__)) |
| 13 | #define noinline __attribute__((noinline)) |
| 14 | #define __must_check __attribute__((warn_unused_result)) |
| 15 | #define __compiler_offsetof(a,b) __builtin_offsetof(a,b) |
| 16 | |