diff options
author | J.T. Conklin <jtc@redback.com> | 2000-10-27 19:17:57 +0000 |
---|---|---|
committer | J.T. Conklin <jtc@redback.com> | 2000-10-27 19:17:57 +0000 |
commit | 8fe6c017cf60e58d3cb5ccd9a4301086a8599fd9 (patch) | |
tree | f902696e25210cbffd75e9a4093b2fd7ac9dff58 /gdb/arch-utils.c | |
parent | 86492e7813dd3de2ecad8d9c2c803198c045300f (diff) | |
download | gdb-8fe6c017cf60e58d3cb5ccd9a4301086a8599fd9.tar.gz |
* 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.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/arch-utils.c b/gdb/arch-utils.c index d58eb457188..4c87676d834 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 { |