6 #ifdef CONFIG_DEBUG_BUGVERBOSE
7 extern void __bug(const char *file
, int line
) __attribute__((noreturn
));
9 /* give file/line information */
10 #define BUG() __bug(__FILE__, __LINE__)
14 /* this just causes an oops */
15 #define BUG() (*(int *)0 = 0)
22 #include <asm-generic/bug.h>