compiler.h 459 B

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