extable.h 330 B

123456789101112
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _ASM_IA64_EXTABLE_H
  3. #define _ASM_IA64_EXTABLE_H
  4. #define ARCH_HAS_RELATIVE_EXTABLE
  5. struct exception_table_entry {
  6. int insn; /* location-relative address of insn this fixup is for */
  7. int fixup; /* location-relative continuation addr.; if bit 2 is set, r9 is set to 0 */
  8. };
  9. #endif