diff options
author | Fred Fish <fnf@specifix.com> | 1998-01-23 02:34:56 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1998-01-23 02:34:56 +0000 |
commit | 962ac804642e72f2485e68ab6272fdd72d274d04 (patch) | |
tree | 4718458f1d1822d68050a4c41847b37f492d9cf7 /include/dis-asm.h | |
parent | a0f40e47f9d760f4d474d65444e0d04207bbca9c (diff) | |
download | gdb-962ac804642e72f2485e68ab6272fdd72d274d04.zip gdb-962ac804642e72f2485e68ab6272fdd72d274d04.tar.gz gdb-962ac804642e72f2485e68ab6272fdd72d274d04.tar.bz2 |
* dis-asm.h: Add flag INSN_HAS_RELOC to tell disassembly
function there is a reloc on this line.
Diffstat (limited to 'include/dis-asm.h')
-rw-r--r-- | include/dis-asm.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/dis-asm.h b/include/dis-asm.h index c6effe3..da6377c 100644 --- a/include/dis-asm.h +++ b/include/dis-asm.h @@ -59,6 +59,7 @@ typedef struct disassemble_info { The top 16 bits are reserved for public use (and are documented here). The bottom 16 bits are for the internal use of the disassembler. */ unsigned long flags; +#define INSN_HAS_RELOC 0x80000000 PTR private_data; /* Function used to get bytes to disassemble. MEMADDR is the |