15 extern void handle_BUG(struct pt_regs *);
17 #define TRAPA_BUG_OPCODE 0xc33e /* trapa #0x3e */
19 #ifdef CONFIG_DEBUG_BUGVERBOSE
23 __asm__ __volatile__ ( \
30 : "n" (TRAPA_BUG_OPCODE), \
31 "i" (__LINE__), "X" (__FILE__), \
32 "X" (__FUNCTION__)); \
39 __asm__ __volatile__ ( \
43 : "n" (TRAPA_BUG_OPCODE)); \
46 #endif /* CONFIG_DEBUG_BUGVERBOSE */
50 #endif /* CONFIG_BUG */
52 #include <asm-generic/bug.h>
54 #endif /* __ASM_SH_BUG_H */