diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-03-31 21:43:25 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-03-31 21:43:25 +0000 |
commit | 5d0734a7d74cf01b73303aeb884b719b4b220035 (patch) | |
tree | f24aaaf513a030c64dd9b0dae5ddb405a1c214f3 /gdb/h8500-tdep.c | |
parent | 79337c85b8e706bd247a99d26a237f6dddf4ffe5 (diff) | |
download | gdb-5d0734a7d74cf01b73303aeb884b719b4b220035.zip gdb-5d0734a7d74cf01b73303aeb884b719b4b220035.tar.gz gdb-5d0734a7d74cf01b73303aeb884b719b4b220035.tar.bz2 |
provide a new interface (using read_memory_func) to call the disassemblers
which copes with errors in a plausible way
Diffstat (limited to 'gdb/h8500-tdep.c')
-rw-r--r-- | gdb/h8500-tdep.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gdb/h8500-tdep.c b/gdb/h8500-tdep.c index 50d5ae0..fc16764 100644 --- a/gdb/h8500-tdep.c +++ b/gdb/h8500-tdep.c @@ -110,12 +110,9 @@ print_insn (memaddr, stream) CORE_ADDR memaddr; FILE *stream; { - /* Nothing is bigger than 8 bytes */ - char data[8]; disassemble_info info; - read_memory (memaddr, data, sizeof (data)); GDB_INIT_DISASSEMBLE_INFO(info, stream); - return print_insn_h8500 (memaddr, data, &info); + return print_insn_h8500 (memaddr, &info); } /* Given a GDB frame, determine the address of the calling function's frame. |