2011-01-10 Michael Snyder <msnyder@vmware.com>

* charset.c (validate): Internationalization.
	* coffread.c (read_one_sym): Ditto.
	* dwarf2read.c (dwarf2_attach_fields_to_type): Ditto.
	* h8300-tdep.c (H8300_extract_return_value): Ditto.
	* inflow.c (new_tty): Ditto.
	* iq2000-tdep.c (iq2000_breakpoint_from_pc): Ditto.
	* m32c-tdep.c (m32c_return_value): Ditto.
	* mep-tdep.c (mep_store_return_value): Ditto.
	* score-tdep.c (score7_fetch_insn): Ditto.
	* ser-mingw.c (pipe_windows_open): Ditto.
	* sh64-tdep.c (sh64_extract_return_value): Ditto.
	* spu-tdep.c (spu_register_type): Ditto.
	* tracepoint.c (trace_find_command): Ditto.
	* valarith.c (value_pos): Ditto.
This commit is contained in:
Michael Snyder
2011-01-10 17:14:13 +00:00
parent 9d573aae1f
commit a73c6dcdd4
14 changed files with 79 additions and 75 deletions

View File

@@ -2219,9 +2219,9 @@ m32c_return_value (struct gdbarch *gdbarch,
= lookup_minimal_symbol ("mem0", NULL, NULL);
if (! mem0)
error ("The return value is stored in memory at 'mem0', "
"but GDB cannot find\n"
"its address.");
error (_("The return value is stored in memory at 'mem0', "
"but GDB cannot find\n"
"its address."));
read_memory (SYMBOL_VALUE_ADDRESS (mem0), readbuf, valtype_len);
}
}
@@ -2251,9 +2251,9 @@ m32c_return_value (struct gdbarch *gdbarch,
= lookup_minimal_symbol ("mem0", NULL, NULL);
if (! mem0)
error ("The return value is stored in memory at 'mem0', "
"but GDB cannot find\n"
" its address.");
error (_("The return value is stored in memory at 'mem0', "
"but GDB cannot find\n"
" its address."));
write_memory (SYMBOL_VALUE_ADDRESS (mem0),
(char *) writebuf, valtype_len);
}