diff options
author | Michael Snyder <msnyder@vmware.com> | 2011-01-11 15:10:03 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2011-01-11 15:10:03 +0000 |
commit | 9b20d036b6804e167f6b3a843661022ed46399bb (patch) | |
tree | 6f390f9b7338d77b0d1de99a5e97d770d61e2093 /gdb/arm-tdep.c | |
parent | dae477fed8cdd8063a79042f2781a983be1c728d (diff) | |
download | gdb-9b20d036b6804e167f6b3a843661022ed46399bb.zip gdb-9b20d036b6804e167f6b3a843661022ed46399bb.tar.gz gdb-9b20d036b6804e167f6b3a843661022ed46399bb.tar.bz2 |
2011-01-11 Michael Snyder <msnyder@vmware.com>
* arm-tdep.c: Internationalization.
* c-lang.c: Ditto.
* charset.c: Ditto.
* fork-child.c: Ditto.
* nto-procfs.c: Ditto.
* ppc-sysv-tdep.c: Ditto.
* procfs.c: Ditto.
* remote-mips.c: Ditto.
* remote.c: Ditto.
* rs6000-nat.c: Ditto.
* rs6000-tdep.c: Ditto.
* target.c: Ditto.
* valops.c: Ditto.
* value.c: Ditto.
* xml-support.c: Ditto.
* mi/mi-cmd-break.c: Ditto.
* mi/mi-cmd-var.c: Ditto.
* mi/mi-interp.c: Ditto.
* mi/mi-main.c: Ditto.
Diffstat (limited to 'gdb/arm-tdep.c')
-rw-r--r-- | gdb/arm-tdep.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/arm-tdep.c b/gdb/arm-tdep.c index dc6299e..9ec410d 100644 --- a/gdb/arm-tdep.c +++ b/gdb/arm-tdep.c @@ -1620,7 +1620,7 @@ arm_instruction_changes_pc (uint32_t this_instr) return 0; default: - internal_error (__FILE__, __LINE__, "bad value in switch"); + internal_error (__FILE__, __LINE__, _("bad value in switch")); } } @@ -6540,9 +6540,9 @@ arm_store_return_value (struct type *type, struct regcache *regs, break; default: - internal_error - (__FILE__, __LINE__, - _("arm_store_return_value: Floating point model not supported")); + internal_error (__FILE__, __LINE__, + _("arm_store_return_value: Floating " + "point model not supported")); break; } } @@ -6788,7 +6788,7 @@ arm_update_current_architecture (void) gdbarch_info_init (&info); if (!gdbarch_update_p (info)) - internal_error (__FILE__, __LINE__, "could not update architecture"); + internal_error (__FILE__, __LINE__, _("could not update architecture")); } static void |