Linux-2.6.12-rc2
[linux-2.6/kvm.git] / include / asm-sparc64 / bug.h
blob25c5b1dfe37834ebcf0743887f56eca16fce2b3b
1 #ifndef _SPARC64_BUG_H
2 #define _SPARC64_BUG_H
4 #include <linux/compiler.h>
6 #ifdef CONFIG_DEBUG_BUGVERBOSE
7 extern void do_BUG(const char *file, int line);
8 #define BUG() do { \
9 do_BUG(__FILE__, __LINE__); \
10 __builtin_trap(); \
11 } while (0)
12 #else
13 #define BUG() __builtin_trap()
14 #endif
16 #define HAVE_ARCH_BUG
17 #include <asm-generic/bug.h>
19 #endif