Revert to Fedora kernel-2.6.17-1.2187_FC5 patched with vs2.0.2.1; there are too many...
[linux-2.6.git] / include / asm-s390 / bug.h
index 8768983..7ddaa05 100644 (file)
@@ -5,18 +5,9 @@
 
 #ifdef CONFIG_BUG
 
-static inline __attribute__((noreturn)) void __do_illegal_op(void)
-{
-#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 3)
-       __builtin_trap();
-#else
-       asm volatile(".long 0");
-#endif
-}
-
 #define BUG() do { \
        printk("kernel BUG at %s:%d!\n", __FILE__, __LINE__); \
-       __do_illegal_op(); \
+       __builtin_trap(); \
 } while (0)
 
 #define HAVE_ARCH_BUG