compiler-clang.h 320 B

123456789101112
  1. #ifndef __LINUX_COMPILER_H
  2. #error "Please don't include <linux/compiler-clang.h> directly, include <linux/compiler.h> instead."
  3. #endif
  4. /* Some compiler specific definitions are overwritten here
  5. * for Clang compiler
  6. */
  7. #ifdef uninitialized_var
  8. #undef uninitialized_var
  9. #define uninitialized_var(x) x = *(&(x))
  10. #endif