bug.h 278 B

1234567891011121314151617181920
  1. #ifndef __ASM_BUG_H
  2. #define __ASM_BUG_H
  3. #ifdef CONFIG_BUG
  4. #include <asm/break.h>
  5. #define BUG() \
  6. do { \
  7. __asm__ __volatile__("break %0" : : "i" (BRK_BUG)); \
  8. } while (0)
  9. #define HAVE_ARCH_BUG
  10. #endif
  11. #include <asm-generic/bug.h>
  12. #endif /* __ASM_BUG_H */