diff options
author | Pedro Alves <palves@redhat.com> | 2008-08-21 13:19:18 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2008-08-21 13:19:18 +0000 |
commit | aded6f54f0cb9d9b44d72d06af7b940cdeb1876b (patch) | |
tree | 153a15e75764db0005c7b5b325abd0415ed889e5 /gdb/xstormy16-tdep.c | |
parent | 2b60860a4c823c5de508a6af53fcfd1c57c31cba (diff) | |
download | gdb-aded6f54f0cb9d9b44d72d06af7b940cdeb1876b.zip gdb-aded6f54f0cb9d9b44d72d06af7b940cdeb1876b.tar.gz gdb-aded6f54f0cb9d9b44d72d06af7b940cdeb1876b.tar.bz2 |
* arm-tdep.c (arm_pc_is_thumb): Use obj_section_addr.
* hppa-hpux-tdep.c (hppa_hpux_find_dummy_bpaddr): Likewise.
* hppa-linux-tdep.c (hppa_linux_find_global_pointer): Use
obj_section_addr and obj_section_endaddr.
* hppa-tdep.c (hppa64_convert_code_addr_to_fptr): Likewise.
* hppabsd-tdep.c (hppabsd_find_global_pointer): Likewise.
* ia64-tdep.c (ia64_find_global_pointer): Likewise.
(find_extant_func_descr): Likewise.
* solib-frv.c (frv_relocate_main_executable): Use
obj_section_addr.
* xstormy16-tdep.c (xstormy16_find_jmp_table_entry): Use
obj_section_addr and obj_section_endaddr.
Diffstat (limited to 'gdb/xstormy16-tdep.c')
-rw-r--r-- | gdb/xstormy16-tdep.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gdb/xstormy16-tdep.c b/gdb/xstormy16-tdep.c index eac5efd..5fcceb7 100644 --- a/gdb/xstormy16-tdep.c +++ b/gdb/xstormy16-tdep.c @@ -550,9 +550,12 @@ xstormy16_find_jmp_table_entry (CORE_ADDR faddr) if (osect < faddr_sect->objfile->sections_end) { - CORE_ADDR addr; - for (addr = osect->addr; - addr < osect->endaddr; addr += 2 * xstormy16_inst_size) + CORE_ADDR addr, endaddr; + + addr = obj_section_addr (osect); + endaddr = obj_section_endaddr (osect); + + for (; addr < endaddr; addr += 2 * xstormy16_inst_size) { LONGEST inst, inst2, faddr2; char buf[2 * xstormy16_inst_size]; |