aboutsummaryrefslogtreecommitdiff
path: root/gdb/arch-utils.c
diff options
context:
space:
mode:
authorJ.T. Conklin <jtc@acorntoolworks.com>2000-10-27 19:17:57 +0000
committerJ.T. Conklin <jtc@acorntoolworks.com>2000-10-27 19:17:57 +0000
commitec3d358c9f7f313ecde095bcf1ea45a5706c6d71 (patch)
treef2610a607ff7bdf867f3241e8e343a82628ed870 /gdb/arch-utils.c
parent6f6ef0faed469f8dc9d0257a9b23a7678311819f (diff)
downloadfsf-binutils-gdb-ec3d358c9f7f313ecde095bcf1ea45a5706c6d71.zip
fsf-binutils-gdb-ec3d358c9f7f313ecde095bcf1ea45a5706c6d71.tar.gz
fsf-binutils-gdb-ec3d358c9f7f313ecde095bcf1ea45a5706c6d71.tar.bz2
* arch-utils.c (set_architecture, set_architecture_from_arch_mach,
set_gdbarch_from_file): Fix spelling error. * v850-tdep.c (v850_target_architecture_hook): Likewise. * gdbarch.sh: Fix spelling errors in comment. * gdbarch.c, gdbarch.h: Regenerate. * ppcnbsd-nat.c (fetch_core_registers, fetch_inferior_registers, store_inferior_registers): Support older NetBSD/powerpc systems from before fp reg support was added. Adapt to register number changes caused when powerpc target was multi-arched.
Diffstat (limited to 'gdb/arch-utils.c')
-rw-r--r--gdb/arch-utils.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/arch-utils.c b/gdb/arch-utils.c
index d58eb45..4c87676 100644
--- a/gdb/arch-utils.c
+++ b/gdb/arch-utils.c
@@ -441,7 +441,7 @@ set_architecture_from_arch_mach (enum bfd_architecture arch,
if (wanted != NULL)
set_arch (wanted, set_arch_manual);
else
- internal_error ("gdbarch: hardwired architecture/machine not reconized");
+ internal_error ("gdbarch: hardwired architecture/machine not recognized");
}
/* Set the architecture from a BFD (deprecated) */
@@ -500,7 +500,7 @@ set_architecture (char *ignore_args, int from_tty, struct cmd_list_element *c)
if (gdbarch_update_p (info))
target_architecture_auto = 0;
else
- printf_unfiltered ("Architecture `%s' not reconized.\n",
+ printf_unfiltered ("Architecture `%s' not recognized.\n",
set_architecture_string);
}
else
@@ -560,7 +560,7 @@ set_gdbarch_from_file (bfd *abfd)
memset (&info, 0, sizeof info);
info.abfd = abfd;
if (! gdbarch_update_p (info))
- error ("Architecture of file not reconized.\n");
+ error ("Architecture of file not recognized.\n");
}
else
{