2005-04-17 02:20:36 +04:00
|
|
|
#ifndef _ASM_IA64_BUG_H
|
|
|
|
#define _ASM_IA64_BUG_H
|
|
|
|
|
2005-05-01 19:59:01 +04:00
|
|
|
#ifdef CONFIG_BUG
|
2006-01-08 12:04:09 +03:00
|
|
|
#define ia64_abort() __builtin_trap()
|
2005-04-17 02:20:36 +04:00
|
|
|
#define BUG() do { printk("kernel BUG at %s:%d!\n", __FILE__, __LINE__); ia64_abort(); } while (0)
|
|
|
|
|
2005-05-01 19:59:01 +04:00
|
|
|
/* should this BUG be made generic? */
|
2005-04-17 02:20:36 +04:00
|
|
|
#define HAVE_ARCH_BUG
|
2005-05-01 19:59:01 +04:00
|
|
|
#endif
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
#include <asm-generic/bug.h>
|
|
|
|
|
|
|
|
#endif
|