xref: /OK3568_Linux_fs/kernel/arch/ia64/include/asm/extable.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-2.0 */
2*4882a593Smuzhiyun #ifndef _ASM_IA64_EXTABLE_H
3*4882a593Smuzhiyun #define _ASM_IA64_EXTABLE_H
4*4882a593Smuzhiyun 
5*4882a593Smuzhiyun #define ARCH_HAS_RELATIVE_EXTABLE
6*4882a593Smuzhiyun 
7*4882a593Smuzhiyun struct exception_table_entry {
8*4882a593Smuzhiyun 	int insn;	/* location-relative address of insn this fixup is for */
9*4882a593Smuzhiyun 	int fixup;	/* location-relative continuation addr.; if bit 2 is set, r9 is set to 0 */
10*4882a593Smuzhiyun };
11*4882a593Smuzhiyun 
12*4882a593Smuzhiyun #endif
13