diff options
author | Nick Clifton <nickc@redhat.com> | 2007-10-08 15:26:42 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2007-10-08 15:26:42 +0000 |
commit | bd3ba5d1b3c7d421d3e61f67a11ed06d6fff93fa (patch) | |
tree | a7c975484f7d271448ef27aa5536082b75119afe /gas/config/tc-arm.c | |
parent | 0c6773c14acf127b564cb48b726292e026c54a59 (diff) | |
download | gdb-bd3ba5d1b3c7d421d3e61f67a11ed06d6fff93fa.zip gdb-bd3ba5d1b3c7d421d3e61f67a11ed06d6fff93fa.tar.gz gdb-bd3ba5d1b3c7d421d3e61f67a11ed06d6fff93fa.tar.bz2 |
PR gas/5121 gas/5122 gas/5123 gas/5124 gas/5125 gas/5126 gas/5129 gas/5131 gas/5132 gas/5137 gas/5143
* Makefile.am (CFILES): Add cgen.c
(TARGET_CPU_CFILES): Add tc-iq2000.c, tc-maxq.c, tc-mt.c, tc-tic4x.c and xtensa-relax.c.
(TARGET_CPU_HFILES): Add tc-iq2000.h, tc-maxq.h, tc-mt.h, tc-tic4x.h and xtensa-relax.h.
(TARG_ENV_HFILES): Remove te-aux.h, te-delta.h, te-delt88.h, te-ic960.h, te-linux.h.
Add te-aix5.h, te-armeabi.h, te-freebsd.h, te-gnu.h, te-interix.h, te-vxworks.h.
(CONFIG_ATOF_CFILES): New variable.
(POTFILES): Add CONFIG_ATOF_CFILES to dependencies. Fix typo with dependency upon TARG_ENV_HFILES.
(DEPTC): Do not put "#include opcodes/<foo>-desc.h" into cgen-desc.h when foo-desc.h does not exit.
Run make dep-am.
* Makefile.in: Regenerate.
* doc/Makefile.in: Regenerate.
* po/POTFILES.in: Regenerate.
* po/es.po: Regenerate.
* po/fr.po: Regenerate.
* po/gas.pot: Regenerate.
* po/rw.po: Regenerate.
* po/tr.po: Regenerate.
* config/obj-elf.c (obj_elf_vtable_inherit): Allow for translation of error messages.
* config/obj-som.c: Likewise.
* config/tc-arc.c: Likewise.
* config/tc-arm.c: Likewise.
* config/tc-bfin.c: Likewise.
* config/tc-frv.c: Likewise.
Diffstat (limited to 'gas/config/tc-arm.c')
-rw-r--r-- | gas/config/tc-arm.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index 79d1986..daba101 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -2430,7 +2430,7 @@ find_real_start (symbolS * symbolP) if (new_target == NULL) { - as_warn ("Failed to find real start of function: %s\n", name); + as_warn (_("Failed to find real start of function: %s\n"), name); new_target = symbolP; } @@ -6003,7 +6003,7 @@ parse_operands (char *str, const unsigned char *pattern) break; default: - as_fatal ("unhandled operand code %d", upat[i]); + as_fatal (_("unhandled operand code %d"), upat[i]); } /* Various value-based sanity checks and shared operations. We @@ -6614,7 +6614,7 @@ do_barrier (void) { constraint ((inst.instruction & 0xf0) != 0x40 && inst.operands[0].imm != 0xf, - "bad barrier type"); + _("bad barrier type")); inst.instruction |= inst.operands[0].imm; } else @@ -7012,8 +7012,8 @@ do_ldstt (void) reject [Rn,...]. */ if (inst.operands[1].preind) { - constraint (inst.reloc.exp.X_op != O_constant || - inst.reloc.exp.X_add_number != 0, + constraint (inst.reloc.exp.X_op != O_constant + || inst.reloc.exp.X_add_number != 0, _("this instruction requires a post-indexed address")); inst.operands[1].preind = 0; @@ -7043,8 +7043,8 @@ do_ldsttv4 (void) reject [Rn,...]. */ if (inst.operands[1].preind) { - constraint (inst.reloc.exp.X_op != O_constant || - inst.reloc.exp.X_add_number != 0, + constraint (inst.reloc.exp.X_op != O_constant + || inst.reloc.exp.X_add_number != 0, _("this instruction requires a post-indexed address")); inst.operands[1].preind = 0; @@ -8773,7 +8773,7 @@ do_t_barrier (void) { constraint ((inst.instruction & 0xf0) != 0x40 && inst.operands[0].imm != 0xf, - "bad barrier type"); + _("bad barrier type")); inst.instruction |= inst.operands[0].imm; } else @@ -17309,7 +17309,7 @@ start_unwind_section (const segT text_seg, int idx) group_name = elf_group_name (text_seg); if (group_name == NULL) { - as_bad ("Group section `%s' has no group signature", + as_bad (_("Group section `%s' has no group signature"), segment_name (text_seg)); ignore_rest_of_line (); return; @@ -17627,7 +17627,7 @@ md_undefined_symbol (char * name ATTRIBUTE_UNUSED) if (!GOT_symbol) { if (symbol_find (name)) - as_bad ("GOT already in the symbol table"); + as_bad (_("GOT already in the symbol table")); GOT_symbol = symbol_new (name, undefined_section, (valueT) 0, & zero_address_frag); |