diff options
author | Nick Clifton <nickc@redhat.com> | 2009-07-24 11:45:01 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2009-07-24 11:45:01 +0000 |
commit | 20203fb9399bed63f555d79dcd8ad95a5bb0aed6 (patch) | |
tree | 207b93fc98c2684fde83de1ff205672973e2d50f /gas/config/tc-tic30.c | |
parent | 1174fea4a99b65a342b4b0198e9a41b80f213b57 (diff) | |
download | gdb-20203fb9399bed63f555d79dcd8ad95a5bb0aed6.zip gdb-20203fb9399bed63f555d79dcd8ad95a5bb0aed6.tar.gz gdb-20203fb9399bed63f555d79dcd8ad95a5bb0aed6.tar.bz2 |
PR 10437
* config/tc-alpha.c: Fix up uses of gas printf like functions so
that the format string is a constant string. Add translation
support to message strings.
* config/tc-arc.c: Likewise.
* config/tc-arm.c: Likewise.
* config/tc-cris.c: Likewise.
* config/tc-fr30.c: Likewise.
* config/tc-frv.c: Likewise.
* config/tc-h8300.c: Likewise.
* config/tc-hppa.c: Likewise.
* config/tc-i370.c: Likewise.
* config/tc-i960.c: Likewise.
* config/tc-ia64.c: Likewise.
* config/tc-m32r.c: Likewise.
* config/tc-mep.c: Likewise.
* config/tc-mips.c: Likewise.
* config/tc-moxie.c: Likewise.
* config/tc-msp430.c: Likewise.
* config/tc-openrisc.c: Likewise.
* config/tc-pdp11.c: Likewise.
* config/tc-pj.c: Likewise.
* config/tc-s390.c: Likewise.
* config/tc-sh.c: Likewise.
* config/tc-sh64.c: Likewise.
* config/tc-sparc.c: Likewise.
* config/tc-spu.c: Likewise.
* config/tc-tic30.c: Likewise.
* config/tc-tic4x.c: Likewise.
* config/tc-tic54x.c: Likewise.
* config/tc-v850.c: Likewise.
* config/tc-xc16x.c: Likewise.
* config/tc-xstormy16.c: Likewise.
* config/tc-z80.c: Likewise.
* config/tc-z8k.c: Likewise.
* config/atof-ieee.c: Add translation support to as_warn
messages.
* config/obj-coff.c: Likewise.
Diffstat (limited to 'gas/config/tc-tic30.c')
-rw-r--r-- | gas/config/tc-tic30.c | 96 |
1 files changed, 48 insertions, 48 deletions
diff --git a/gas/config/tc-tic30.c b/gas/config/tc-tic30.c index 4dd0daf..1523eae 100644 --- a/gas/config/tc-tic30.c +++ b/gas/config/tc-tic30.c @@ -480,12 +480,12 @@ tic30_operand (char *token) it from the buffer so it can pass through hash_find(). */ if (found_ar) { - as_bad ("More than one AR register found in indirect reference"); + as_bad (_("More than one AR register found in indirect reference")); return NULL; } if (*(token + count + 1) < '0' || *(token + count + 1) > '7') { - as_bad ("Illegal AR register in indirect reference"); + as_bad (_("Illegal AR register in indirect reference")); return NULL; } ar_number = *(token + count + 1) - '0'; @@ -505,7 +505,7 @@ tic30_operand (char *token) if (found_disp) { - as_bad ("More than one displacement found in indirect reference"); + as_bad (_("More than one displacement found in indirect reference")); return NULL; } count++; @@ -513,7 +513,7 @@ tic30_operand (char *token) { if (!is_digit_char (*(token + count))) { - as_bad ("Invalid displacement in indirect reference"); + as_bad (_("Invalid displacement in indirect reference")); return NULL; } disp[disp_posn++] = *(token + (count++)); @@ -530,7 +530,7 @@ tic30_operand (char *token) ind_buffer[buffer_posn] = '\0'; if (!found_ar) { - as_bad ("AR register not found in indirect reference"); + as_bad (_("AR register not found in indirect reference")); return NULL; } @@ -546,19 +546,19 @@ tic30_operand (char *token) else if ((ind_addr_op->displacement == DISP_REQUIRED) && !found_disp) { /* Maybe an implied displacement of 1 again. */ - as_bad ("required displacement wasn't given in indirect reference"); + as_bad (_("required displacement wasn't given in indirect reference")); return 0; } } else { - as_bad ("illegal indirect reference"); + as_bad (_("illegal indirect reference")); return NULL; } if (found_disp && (disp_number < 0 || disp_number > 255)) { - as_bad ("displacement must be an unsigned 8-bit number"); + as_bad (_("displacement must be an unsigned 8-bit number")); return NULL; } @@ -746,7 +746,7 @@ tic30_parallel_insn (char *token) if (!is_space_char (*current_posn) && *current_posn != PARALLEL_SEPARATOR) { - as_bad ("Invalid character %s before %s operand", + as_bad (_("Invalid character %s before %s operand"), output_invalid (*current_posn), ordinal_names[insn.operands]); return 1; @@ -765,7 +765,7 @@ tic30_parallel_insn (char *token) { if (paren_not_balanced) { - as_bad ("Unbalanced parenthesis in %s operand.", + as_bad (_("Unbalanced parenthesis in %s operand."), ordinal_names[insn.operands]); return 1; } @@ -781,7 +781,7 @@ tic30_parallel_insn (char *token) else if (!is_operand_char (*current_posn) && !is_space_char (*current_posn)) { - as_bad ("Invalid character %s in %s operand", + as_bad (_("Invalid character %s in %s operand"), output_invalid (*current_posn), ordinal_names[insn.operands]); return 1; @@ -800,7 +800,7 @@ tic30_parallel_insn (char *token) p_insn.operands[found_separator]++; if (p_insn.operands[found_separator] > MAX_OPERANDS) { - as_bad ("Spurious operands; (%d operands/instruction max)", + as_bad (_("Spurious operands; (%d operands/instruction max)"), MAX_OPERANDS); return 1; } @@ -818,12 +818,12 @@ tic30_parallel_insn (char *token) { if (expecting_operand) { - as_bad ("Expecting operand after ','; got nothing"); + as_bad (_("Expecting operand after ','; got nothing")); return 1; } if (*current_posn == ',') { - as_bad ("Expecting operand before ','; got nothing"); + as_bad (_("Expecting operand before ','; got nothing")); return 1; } } @@ -834,7 +834,7 @@ tic30_parallel_insn (char *token) if (*++current_posn == END_OF_INSN) { /* Just skip it, if it's \n complain. */ - as_bad ("Expecting operand after ','; got nothing"); + as_bad (_("Expecting operand after ','; got nothing")); return 1; } expecting_operand = 1; @@ -861,13 +861,13 @@ tic30_parallel_insn (char *token) if (p_insn.operands[0] != p_insn.tm->operands_1) { - as_bad ("incorrect number of operands given in the first instruction"); + as_bad (_("incorrect number of operands given in the first instruction")); return 1; } if (p_insn.operands[1] != p_insn.tm->operands_2) { - as_bad ("incorrect number of operands given in the second instruction"); + as_bad (_("incorrect number of operands given in the second instruction")); return 1; } @@ -888,7 +888,7 @@ tic30_parallel_insn (char *token) if ((p_insn.operand_type[count][i]->op_type & p_insn.tm->operand_types[count][i]) == 0) { - as_bad ("%s instruction, operand %d doesn't match", + as_bad (_("%s instruction, operand %d doesn't match"), ordinal_names[count], i + 1); return 1; } @@ -912,28 +912,28 @@ tic30_parallel_insn (char *token) /* Check for the multiply instructions. */ if (num_rn != 2) { - as_bad ("incorrect format for multiply parallel instruction"); + as_bad (_("incorrect format for multiply parallel instruction")); return 1; } if (num_ind != 2) { /* Shouldn't get here. */ - as_bad ("incorrect format for multiply parallel instruction"); + as_bad (_("incorrect format for multiply parallel instruction")); return 1; } if ((p_insn.operand_type[0][2]->reg.opcode != 0x00) && (p_insn.operand_type[0][2]->reg.opcode != 0x01)) { - as_bad ("destination for multiply can only be R0 or R1"); + as_bad (_("destination for multiply can only be R0 or R1")); return 1; } if ((p_insn.operand_type[1][2]->reg.opcode != 0x02) && (p_insn.operand_type[1][2]->reg.opcode != 0x03)) { - as_bad ("destination for add/subtract can only be R2 or R3"); + as_bad (_("destination for add/subtract can only be R2 or R3")); return 1; } @@ -1000,7 +1000,7 @@ tic30_parallel_insn (char *token) p_insn.opcode |= (p_insn.operand_type[1][1]->reg.opcode << 19); p_insn.opcode |= (p_insn.operand_type[0][1]->reg.opcode << 22); if (p_insn.operand_type[1][1]->reg.opcode == p_insn.operand_type[0][1]->reg.opcode) - as_warn ("loading the same register in parallel operation"); + as_warn (_("loading the same register in parallel operation")); break; case OO_4op3: @@ -1381,8 +1381,8 @@ tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixP) MAP (2, 1, BFD_RELOC_16_PCREL); MAP (4, 0, BFD_RELOC_32); default: - as_bad ("Can not do %d byte %srelocation", fixP->fx_size, - fixP->fx_pcrel ? "pc-relative " : ""); + as_bad (_("Can not do %d byte %srelocation"), fixP->fx_size, + fixP->fx_pcrel ? _("pc-relative ") : ""); } #undef MAP #undef F @@ -1443,7 +1443,7 @@ md_assemble (char *line) if (!is_opcode_char (*current_posn)) { - as_bad ("Invalid character %s in opcode", + as_bad (_("Invalid character %s in opcode"), output_invalid (*current_posn)); return; } @@ -1473,7 +1473,7 @@ md_assemble (char *line) else { debug ("Didn't find insn\n"); - as_bad ("Unknown TMS320C30 instruction: %s", token_start); + as_bad (_("Unknown TMS320C30 instruction: %s"), token_start); return; } *current_posn = save_char; @@ -1493,7 +1493,7 @@ md_assemble (char *line) { if (!is_space_char (*current_posn)) { - as_bad ("Invalid character %s before %s operand", + as_bad (_("Invalid character %s before %s operand"), output_invalid (*current_posn), ordinal_names[insn.operands]); return; @@ -1508,7 +1508,7 @@ md_assemble (char *line) { if (paren_not_balanced) { - as_bad ("Unbalanced parenthesis in %s operand.", + as_bad (_("Unbalanced parenthesis in %s operand."), ordinal_names[insn.operands]); return; } @@ -1518,7 +1518,7 @@ md_assemble (char *line) else if (!is_operand_char (*current_posn) && !is_space_char (*current_posn)) { - as_bad ("Invalid character %s in %s operand", + as_bad (_("Invalid character %s in %s operand"), output_invalid (*current_posn), ordinal_names[insn.operands]); return; @@ -1535,7 +1535,7 @@ md_assemble (char *line) this_operand = insn.operands++; if (insn.operands > MAX_OPERANDS) { - as_bad ("Spurious operands; (%d operands/instruction max)", + as_bad (_("Spurious operands; (%d operands/instruction max)"), MAX_OPERANDS); return; } @@ -1552,12 +1552,12 @@ md_assemble (char *line) { if (expecting_operand) { - as_bad ("Expecting operand after ','; got nothing"); + as_bad (_("Expecting operand after ','; got nothing")); return; } if (*current_posn == ',') { - as_bad ("Expecting operand before ','; got nothing"); + as_bad (_("Expecting operand before ','; got nothing")); return; } } @@ -1568,7 +1568,7 @@ md_assemble (char *line) if (*++current_posn == END_OF_INSN) { /* Just skip it, if it's \n complain. */ - as_bad ("Expecting operand after ','; got nothing"); + as_bad (_("Expecting operand after ','; got nothing")); return; } expecting_operand = 1; @@ -1593,7 +1593,7 @@ md_assemble (char *line) numops--; if (insn.operands != numops) { - as_bad ("Incorrect number of operands given"); + as_bad (_("Incorrect number of operands given")); return; } } @@ -1626,7 +1626,7 @@ md_assemble (char *line) } else { - as_bad ("The %s operand doesn't match", ordinal_names[count]); + as_bad (_("The %s operand doesn't match"), ordinal_names[count]); return; } } @@ -1651,7 +1651,7 @@ md_assemble (char *line) else { /* Shouldn't make it to this stage. */ - as_bad ("Incompatible first and second operands in instruction"); + as_bad (_("Incompatible first and second operands in instruction")); return; } break; @@ -1663,7 +1663,7 @@ md_assemble (char *line) else { /* Shouldn't make it to this stage. */ - as_bad ("Incompatible first and second operands in instruction"); + as_bad (_("Incompatible first and second operands in instruction")); return; } break; @@ -1777,7 +1777,7 @@ md_assemble (char *line) if (md_atof ('f', p + 2, & size) != 0) { - as_bad ("invalid short form floating point immediate operand"); + as_bad (_("invalid short form floating point immediate operand")); return; } @@ -1787,9 +1787,9 @@ md_assemble (char *line) case Imm_UInt: debug ("Unsigned int first operand\n"); if (insn.operand_type[0]->immediate.decimal_found) - as_warn ("rounding down first operand float to unsigned int"); + as_warn (_("rounding down first operand float to unsigned int")); if (insn.operand_type[0]->immediate.u_number > 0xFFFF) - as_warn ("only lower 16-bits of first operand are used"); + as_warn (_("only lower 16-bits of first operand are used")); insn.opcode |= (insn.operand_type[0]->immediate.u_number & 0x0000FFFFL); md_number_to_chars (p, (valueT) insn.opcode, INSN_SIZE); @@ -1799,12 +1799,12 @@ md_assemble (char *line) debug ("Int first operand\n"); if (insn.operand_type[0]->immediate.decimal_found) - as_warn ("rounding down first operand float to signed int"); + as_warn (_("rounding down first operand float to signed int")); if (insn.operand_type[0]->immediate.s_number < -32768 || insn.operand_type[0]->immediate.s_number > 32767) { - as_bad ("first operand is too large for 16-bit signed int"); + as_bad (_("first operand is too large for 16-bit signed int")); return; } insn.opcode |= @@ -1869,13 +1869,13 @@ md_assemble (char *line) { if (insn.operand_type[0]->immediate.decimal_found) { - as_bad ("first operand is floating point"); + as_bad (_("first operand is floating point")); return; } if (insn.operand_type[0]->immediate.s_number < -32768 || insn.operand_type[0]->immediate.s_number > 32767) { - as_bad ("first operand is too large for 16-bit signed int"); + as_bad (_("first operand is too large for 16-bit signed int")); return; } insn.opcode |= (insn.operand_type[1]->immediate.s_number); @@ -1900,7 +1900,7 @@ md_assemble (char *line) else { /* Shouldn't get here. */ - as_bad ("interrupt vector for trap instruction out of range"); + as_bad (_("interrupt vector for trap instruction out of range")); return; } md_number_to_chars (p, (valueT) insn.opcode, INSN_SIZE); @@ -1945,7 +1945,7 @@ md_assemble (char *line) /* Immediate addressing uses upper 8 bits of address. */ if (insn.operand_type[0]->immediate.u_number > 0x00FFFFFF) { - as_bad ("LDP instruction needs a 24-bit operand"); + as_bad (_("LDP instruction needs a 24-bit operand")); return; } insn.opcode |= @@ -1969,7 +1969,7 @@ md_assemble (char *line) if (insn.operand_type[0]->immediate.resolved == 1) { if (insn.operand_type[0]->immediate.u_number > 0x00FFFFFF) - as_warn ("first operand is too large for a 24-bit displacement"); + as_warn (_("first operand is too large for a 24-bit displacement")); insn.opcode |= (insn.operand_type[0]->immediate.u_number & 0x00FFFFFF); md_number_to_chars (p, (valueT) insn.opcode, INSN_SIZE); |