diff options
author | Nick Clifton <nickc@redhat.com> | 2000-01-27 21:44:26 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-01-27 21:44:26 +0000 |
commit | 94470b237bcb47804bd9a9e14ab45cb83eedd6f7 (patch) | |
tree | c89e5f546f51dde5982bdac5f7ccd73daae4c4d1 /include | |
parent | 2f0ca46a499086b1c438f5b1768f383fa60351e2 (diff) | |
download | gdb-94470b237bcb47804bd9a9e14ab45cb83eedd6f7.zip gdb-94470b237bcb47804bd9a9e14ab45cb83eedd6f7.tar.gz gdb-94470b237bcb47804bd9a9e14ab45cb83eedd6f7.tar.bz2 |
Add support for documenting target specific disassembler options
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/dis-asm.h | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 3642131..1c96081 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2000-01-27 Nick Clifton <nickc@redhat.com> + + * dis-asm.h: Add prototype for disassembler_usage(). + 1999-12-15 Doug Evans <dje@transmeta.com> * dis-asm.h: Enclose in extern "C" ifdef __cplusplus. diff --git a/include/dis-asm.h b/include/dis-asm.h index 121b398..b9383fa 100644 --- a/include/dis-asm.h +++ b/include/dis-asm.h @@ -194,6 +194,9 @@ extern int arm_toggle_regnames PARAMS ((void)); /* Fetch the disassembler for a given BFD, if that support is available. */ extern disassembler_ftype disassembler PARAMS ((bfd *)); +/* Document any target specific options available from the disassembler. */ +extern void disassembler_usage PARAMS ((FILE *)); + /* This block of definitions is for particular callers who read instructions into a buffer before calling the instruction decoder. */ |