aboutsummaryrefslogtreecommitdiff
path: root/gdb/arch-utils.c
diff options
context:
space:
mode:
authorUlrich Weigand <uweigand@de.ibm.com>2007-06-13 17:53:51 +0000
committerUlrich Weigand <uweigand@de.ibm.com>2007-06-13 17:53:51 +0000
commit1143fffb920d9d9995854541dae2c8f6add8387a (patch)
tree82dcc04e158bcd1a37c3d0d6b1982e7cb5d6e0d2 /gdb/arch-utils.c
parent4fe99ffbcc277eb81e708a29fe199c383c399a8d (diff)
downloadgdb-1143fffb920d9d9995854541dae2c8f6add8387a.zip
gdb-1143fffb920d9d9995854541dae2c8f6add8387a.tar.gz
gdb-1143fffb920d9d9995854541dae2c8f6add8387a.tar.bz2
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/arch-utils.c')
-rw-r--r--gdb/arch-utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/arch-utils.c b/gdb/arch-utils.c
index f0bc5bb..4a46e35 100644
--- a/gdb/arch-utils.c
+++ b/gdb/arch-utils.c
@@ -404,7 +404,7 @@ show_architecture (struct ui_file *file, int from_tty,
struct cmd_list_element *c, const char *value)
{
const char *arch;
- arch = TARGET_ARCHITECTURE->printable_name;
+ arch = gdbarch_bfd_arch_info (current_gdbarch)->printable_name;
if (target_architecture_user == NULL)
fprintf_filtered (file, _("\
The target architecture is set automatically (currently %s)\n"), arch);