diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2007-06-13 17:53:51 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2007-06-13 17:53:51 +0000 |
commit | e2eda8a68e85639775da4e1d22586a767a8ac332 (patch) | |
tree | 80f6d962e7c79b9c95331c39c3543f015e50a2b0 /gdb/nto-procfs.c | |
parent | 0b69ed24cdb63deaf24b6135ace4edbae8e1eff4 (diff) | |
download | gdb-e2eda8a68e85639775da4e1d22586a767a8ac332.tar.gz |
2007-06-13 Markus Deuling <deuling@de.ibm.com>
* gdbarch.sh (TARGET_ARCHITECTURE): Replace by gdbarch_bfd_arch_info.
* arch-utils.c (show_architecture): Likewise.
* remote-mips.c (mips_open): Likewise
* nto-tdep.c (nto_find_and_open_solib)
(nto_init_solib_absolute_prefix): Likewise.
* nto-procfs (procfs_open): Likewise.
* m68hc11-tdep.c (gdb_print_insn_m68hc11): Likewise.
* gcore.c (default_gcore_mach, default_gcore_arch): Likewise.
* gdbarch.c, gdbarch.h: Regenerate.
Diffstat (limited to 'gdb/nto-procfs.c')
-rw-r--r-- | gdb/nto-procfs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/nto-procfs.c b/gdb/nto-procfs.c index 57bfd87597a..7239fdb89f1 100644 --- a/gdb/nto-procfs.c +++ b/gdb/nto-procfs.c @@ -203,7 +203,8 @@ procfs_open (char *arg, int from_tty) else { if (sysinfo->type != - nto_map_arch_to_cputype (TARGET_ARCHITECTURE->arch_name)) + nto_map_arch_to_cputype (gdbarch_bfd_arch_info + (current_gdbarch)->arch_name)) { close (fd); error (_("Invalid target CPU.")); |