1 #ifndef KVM_COMPILER_H_ 2 #define KVM_COMPILER_H_ 3 4 #include <linux/compiler.h> 5 6 #ifndef __compiletime_error 7 # define __compiletime_error(message) 8 #endif 9 10 #define notrace __attribute__((no_instrument_function)) 11 12 #endif /* KVM_COMPILER_H_ */ 13