4 #include <linux/kernel.h>
8 static inline __attribute__((noreturn)) void __do_illegal_op(void)
10 #if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 3)
13 asm volatile(".long 0");
18 printk("kernel BUG at %s:%d!\n", __FILE__, __LINE__); \
25 #include <asm-generic/bug.h>