1 #ifndef __ALPHA_COMPILER_H
2 #define __ALPHA_COMPILER_H
4 #include <uapi/asm/compiler.h>
6 /* Some idiots over in <linux/compiler.h> thought inline should imply
7 always_inline. This breaks stuff. We'll include this file whenever
8 we run into such problems. */
10 #include <linux/compiler.h>
14 #undef __always_inline
15 #define __always_inline inline __attribute__((always_inline))
17 #endif /* __ALPHA_COMPILER_H */