blob: 5e11c0dfd5036f9b964498b13f4c357aa04d01ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef __ARM_ARM64_BUG_H__
#define __ARM_ARM64_BUG_H__
#include <xen/stringify.h>
#include <asm/arm64/brk.h>
#define BUG_INSTR "brk " __stringify(BRK_BUG_FRAME_IMM)
#define BUG_FN_REG x0
#endif /* __ARM_ARM64_BUG_H__ */
|