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 /opcodes | |
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 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 5 | ||||
-rw-r--r-- | opcodes/disassemble.c | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 9802397..a4a3cf3 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2000-01-27 Nick Clifton <nickc@redhat.com> + + * disassemble.c (disassembler_usage): New function: Print out any + target specific disassembler options. + 2000-01-27 Thomas de Lellis <tdel@windriver.com> * arm-dis.c (printf_insn_big_arm): Treat ELF symbols with the diff --git a/opcodes/disassemble.c b/opcodes/disassemble.c index 74947f0..fac39ca 100644 --- a/opcodes/disassemble.c +++ b/opcodes/disassemble.c @@ -251,3 +251,9 @@ disassembler (abfd) } return disassemble; } + +void +disassembler_usage (FILE * stream) +{ + return; +} |