diff options
author | Tom Tromey <tromey@redhat.com> | 2012-11-09 19:58:03 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2012-11-09 19:58:03 +0000 |
commit | f5656eadf4383cc733b96ff49ba8efbea6922ad3 (patch) | |
tree | 9112778161c6473a6553b5c9491f7ad191f5f477 /gdb/m32r-rom.c | |
parent | 0420f52b9441ae498323d1656d5d2af66a1e13c7 (diff) | |
download | gdb-f5656eadf4383cc733b96ff49ba8efbea6922ad3.zip gdb-f5656eadf4383cc733b96ff49ba8efbea6922ad3.tar.gz gdb-f5656eadf4383cc733b96ff49ba8efbea6922ad3.tar.bz2 |
* gdbarch.sh (target_gdbarch): Remove macro.
(get_target_gdbarch): Rename to target_gdbarch.
* gdbarch.c, gdbarch.h: Rebuild.
* ada-tasks.c, aix-thread.c, amd64-linux-nat.c, arch-utils.c,
arm-tdep.c, auxv.c, breakpoint.c, bsd-uthread.c, corefile.c,
darwin-nat-info.c, dcache.c, dsrec.c, exec.c, fbsd-nat.c,
filesystem.c, gcore.c, gnu-nat.c, i386-darwin-nat.c, i386-nat.c,
ia64-vms-tdep.c, inf-ptrace.c, infcmd.c, jit.c, linux-nat.c,
linux-tdep.c, linux-thread-db.c, m32r-rom.c, memattr.c,
mep-tdep.c, microblaze-tdep.c, mips-linux-nat.c,
mips-linux-tdep.c, mips-tdep.c, monitor.c, moxie-tdep.c,
nto-procfs.c, nto-tdep.c, ppc-linux-nat.c, proc-service.c,
procfs.c, progspace.c, ravenscar-thread.c, record.c,
remote-m32r-sdi.c, remote-mips.c, remote-sim.c, remote.c,
rl78-tdep.c, rs6000-nat.c, rx-tdep.c, s390-nat.c, sol-thread.c,
solib-darwin.c, solib-dsbt.c, solib-frv.c, solib-ia64-hpux.c,
solib-irix.c, solib-pa64.c, solib-som.c, solib-spu.c,
solib-sunos.c, solib-svr4.c, solib.c, spu-linux-nat.c,
spu-multiarch.c, spu-tdep.c, symfile-mem.c, symfile.c, symtab.c,
target-descriptions.c, target.c, target.h, tracepoint.c,
windows-nat.c, windows-tdep.c, xcoffsolib.c, cli/cli-dump.c,
common/agent.c, mi/mi-interp.c, python/py-finishbreakpoint.c,
python/py-inferior.c, python/python.c: Update.
Diffstat (limited to 'gdb/m32r-rom.c')
-rw-r--r-- | gdb/m32r-rom.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/m32r-rom.c b/gdb/m32r-rom.c index 4bb4ceb..f74cfe3 100644 --- a/gdb/m32r-rom.c +++ b/gdb/m32r-rom.c @@ -79,7 +79,7 @@ m32r_load_section (bfd *abfd, asection *s, void *obj) unsigned int *data_count = obj; if (s->flags & SEC_LOAD) { - int addr_size = gdbarch_addr_bit (target_gdbarch) / 8; + int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8; bfd_size_type section_size = bfd_section_size (abfd, s); bfd_vma section_base = bfd_section_lma (abfd, s); unsigned int buffer, i; @@ -89,7 +89,7 @@ m32r_load_section (bfd *abfd, asection *s, void *obj) printf_filtered ("Loading section %s, size 0x%lx lma ", bfd_section_name (abfd, s), (unsigned long) section_size); - fputs_filtered (paddress (target_gdbarch, section_base), gdb_stdout); + fputs_filtered (paddress (target_gdbarch (), section_base), gdb_stdout); printf_filtered ("\n"); gdb_flush (gdb_stdout); monitor_printf ("%s mw\r", phex_nz (section_base, addr_size)); @@ -149,7 +149,7 @@ m32r_load (char *filename, int from_tty) printf_filtered ("Loading section %s, size 0x%lx vma ", bfd_section_name (abfd, s), section_size); - fputs_filtered (paddress (target_gdbarch, section_base), gdb_stdout); + fputs_filtered (paddress (target_gdbarch (), section_base), gdb_stdout); printf_filtered ("\n"); gdb_flush (gdb_stdout); monitor_printf ("%x mw\r", section_base); @@ -548,7 +548,7 @@ m32r_upload_command (char *args, int from_tty) printf_filtered ("Loading section %s, size 0x%lx lma ", bfd_section_name (abfd, s), (unsigned long) section_size); - fputs_filtered (paddress (target_gdbarch, section_base), + fputs_filtered (paddress (target_gdbarch (), section_base), gdb_stdout); printf_filtered ("\n"); gdb_flush (gdb_stdout); |