2005-04-16 18:20:36 -04:00
|
|
|
#ifndef __ASM_BUG_H
|
|
|
|
#define __ASM_BUG_H
|
|
|
|
|
2006-10-15 20:38:50 -04:00
|
|
|
#include <asm/sgidefs.h>
|
2005-05-19 08:08:04 -04:00
|
|
|
|
|
|
|
#ifdef CONFIG_BUG
|
|
|
|
|
2005-04-16 18:20:36 -04:00
|
|
|
#include <asm/break.h>
|
|
|
|
|
|
|
|
#define BUG() \
|
|
|
|
do { \
|
|
|
|
__asm__ __volatile__("break %0" : : "i" (BRK_BUG)); \
|
|
|
|
} while (0)
|
2005-10-29 14:32:38 -04:00
|
|
|
|
|
|
|
#define HAVE_ARCH_BUG
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2006-10-15 20:38:50 -04:00
|
|
|
#if (_MIPS_ISA > _MIPS_ISA_MIPS1)
|
|
|
|
|
|
|
|
#define BUG_ON(condition) \
|
|
|
|
do { \
|
|
|
|
__asm__ __volatile__("tne $0, %0" : : "r" (condition)); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define HAVE_ARCH_BUG_ON
|
|
|
|
|
|
|
|
#endif /* _MIPS_ISA > _MIPS_ISA_MIPS1 */
|
|
|
|
|
2005-04-16 18:20:36 -04:00
|
|
|
#endif
|
2005-05-19 08:08:04 -04:00
|
|
|
|
2005-05-19 13:05:09 -04:00
|
|
|
#include <asm-generic/bug.h>
|
|
|
|
|
2005-05-19 08:08:04 -04:00
|
|
|
#endif /* __ASM_BUG_H */
|