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