diff options
author | Nick Clifton <nickc@redhat.com> | 2001-12-14 21:32:04 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-12-14 21:32:04 +0000 |
commit | cccca346e60287771a71069922ea205cf7f351a6 (patch) | |
tree | 5882bb1b2f9d6a0a91143e2faedd5e8b496e1524 | |
parent | 828a7eb56600fc17be0fed7c07d785d55e7babf9 (diff) | |
download | binutils-redhat-cccca346e60287771a71069922ea205cf7f351a6.tar.gz |
Initialise the disassembler_options field (to NULL).
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/dis-asm.h | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 2313517e40..221dbe96fd 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +2001-12-14 Nick Clifton <nickc@cambridge.redhat.com> + + * dis-asm.h (INIT_DISASSEMBLE_INFO_NO_ARCH): Initialise the + disassembler_options field (to NULL). + 2001-12-13 Jakub Jelinek <jakub@redhat.com> * elf/common.h (PT_GNU_EH_FRAME): Define. diff --git a/include/dis-asm.h b/include/dis-asm.h index 7b52ea810f..4e16ed3453 100644 --- a/include/dis-asm.h +++ b/include/dis-asm.h @@ -300,6 +300,7 @@ extern int generic_symbol_at_address (INFO).bytes_per_line = 0, \ (INFO).bytes_per_chunk = 0, \ (INFO).display_endian = BFD_ENDIAN_UNKNOWN, \ + (INFO).disassembler_options = NULL, \ (INFO).insn_info_valid = 0 #ifdef __cplusplus |