Fix formatting.
authorNick Clifton <nickc@redhat.com>
Mon, 10 Jul 2000 18:59:26 +0000 (18:59 +0000)
committerNick Clifton <nickc@redhat.com>
Mon, 10 Jul 2000 18:59:26 +0000 (18:59 +0000)
gas/ChangeLog
gas/config/tc-h8500.c
gas/flonum-konst.c
gas/po/gas.pot

index aeec7a0bbe17174f9499b91924a92df83a5c0907..3ecf917adf2b13610694370244652120744fa2a6 100644 (file)
@@ -1,3 +1,7 @@
+2000-07-10  Kazu Hirata  <kazu@hxi.com>
+
+       * config/tc-h8500.c: Fix formatting.
+
 2000-07-10  Alan Modra  <alan@linuxcare.com.au>
 
        * config/tc-hppa.c (md_apply_fix): Check fmt 12 and 22 pc-rel
index 1ce0a175b2bdbf89998499a2c35e5fa210e7356b..94301d22a0905531c0bf0ee53977c2518cfbcdeb 100644 (file)
@@ -194,7 +194,7 @@ parse_reg (src, mode, reg)
   /* Cribbed from get_symbol_end().  */
   if (!is_name_beginner (*src) || *src == '\001')
     return 0;
-  end = src+1;
+  end = src + 1;
   while (is_part_of_name (*end) || *end == '\001')
     end++;
   len = end - src;
@@ -259,8 +259,7 @@ parse_reg (src, mode, reg)
   return 0;
 }
 
-static
-char *
+static char *
 parse_exp (s, op, page)
      char *s;
      expressionS *op;
@@ -499,7 +498,7 @@ get_operand (ptr, op, ispage)
          /* Disp */
          src++;
 
-         src = skip_colonthing (exp_signed, src, 
+         src = skip_colonthing (exp_signed, src,
                                 op, RNIND_D16, RNIND_D8, RNIND_D16, 0);
 
          if (*src != ',')
@@ -574,8 +573,7 @@ get_operand (ptr, op, ispage)
     }
 }
 
-static
-char *
+static char *
 get_operands (info, args, operand)
      h8500_opcode_info *info;
      char *args;
@@ -614,13 +612,11 @@ get_operands (info, args, operand)
 
 /* Passed a pointer to a list of opcodes which use different
    addressing modes, return the opcode which matches the opcodes
-   provided
-   */
+   provided.  */
 
 int pcrel8;                    /* Set when we've seen a pcrel operand */
 
-static
-h8500_opcode_info *
+static h8500_opcode_info *
 get_specific (opcode, operands)
      h8500_opcode_info *opcode;
      h8500_operand_info *operands;
@@ -876,8 +872,7 @@ check (operand, low, high)
   return operand->X_add_number;
 }
 
-static
-void
+static void
 insert (output, index, exp, reloc, pcrel)
      char *output;
      int index;
@@ -899,8 +894,8 @@ build_relaxable_instruction (opcode, operand)
      h8500_operand_info *operand;
 {
   /* All relaxable instructions start life as two bytes but can become
-     three bytes long if a lonely branch and up to 9 bytes if long scb
-     */
+     three bytes long if a lonely branch and up to 9 bytes if long
+     scb.  */
   char *p;
   int len;
   int type;
@@ -934,8 +929,8 @@ build_relaxable_instruction (opcode, operand)
     }
 }
 
-/* Now we know what sort of opcodes it is, let's build the bytes -
- */
+/* Now we know what sort of opcodes it is, let's build the bytes.  */
+
 static void
 build_bytes (opcode, operand)
      h8500_opcode_info *opcode;
@@ -970,7 +965,6 @@ build_bytes (opcode, operand)
              break;
            case RD:
            case RDIND:
-             
              output[index] |= rd;
              break;
            case RS:
@@ -984,37 +978,32 @@ build_bytes (opcode, operand)
            case FPIND_D8:
              insert (output, index, &displacement, R_H8500_IMM8, 0);
              break;
-
            case IMM16:
              {
                int p;
-               switch (immediate_inpage) {
-               case 'p':
-                 p = R_H8500_HIGH16;
-                 break;
-               case 'h':               
-                 p = R_H8500_HIGH16;
-                 break;
-               default:
-                 p = R_H8500_IMM16;
-                 break;
-               }
-               
-               insert (output, index, &immediate,p, 0);
+
+               switch (immediate_inpage)
+                 {
+                 case 'p':
+                   p = R_H8500_HIGH16;
+                   break;
+                 case 'h':
+                   p = R_H8500_HIGH16;
+                   break;
+                 default:
+                   p = R_H8500_IMM16;
+                   break;
+                 }
+               insert (output, index, &immediate, p, 0);
              }
-               
              index++;
              break;
            case RLIST:
            case IMM8:
              if (immediate_inpage)
-               {
-                 insert (output, index, &immediate, R_H8500_HIGH8, 0);
-               }
+               insert (output, index, &immediate, R_H8500_HIGH8, 0);
              else
-               {
-                 insert (output, index, &immediate, R_H8500_IMM8, 0);
-               }
+               insert (output, index, &immediate, R_H8500_IMM8, 0);
              break;
            case PCREL16:
              insert (output, index, &displacement, R_H8500_PCREL16, 1);
@@ -1027,19 +1016,12 @@ build_bytes (opcode, operand)
              output[index] |= check (&immediate, 0, 15);
              break;
            case CR:
-
              output[index] |= cr;
              if (cr == 0)
-               {
-                 output[0] |= 0x8;
-               }
+               output[0] |= 0x8;
              else
-               {
-                 output[0] &= ~0x8;
-               }
-
+               output[0] &= ~0x8;
              break;
-
            case CRB:
              output[index] |= crb;
              output[0] &= ~0x8;
@@ -1081,10 +1063,9 @@ build_bytes (opcode, operand)
     }
 }
 
-/* This is the guts of the machine-dependent assembler.  STR points to a
-   machine dependent instruction.  This function is supposed to emit
-   the frags/bytes it assembles to.
-   */
+/* This is the guts of the machine-dependent assembler.  STR points to
+   a machine dependent instruction.  This function is supposed to emit
+   the frags/bytes it assembles to.  */
 
 void
 md_assemble (str)
@@ -1099,11 +1080,11 @@ md_assemble (str)
 
   int nlen = 0;
 
-  /* Drop leading whitespace */
+  /* Drop leading whitespace */
   while (*str == ' ')
     str++;
 
-  /* find the op code end */
+  /* Find the op code end.  */
   for (op_start = op_end = str;
        !is_end_of_line[(unsigned char) *op_end] && *op_end != ' ';
        op_end++)
@@ -1118,9 +1099,7 @@ md_assemble (str)
   name[nlen] = 0;
 
   if (op_end == op_start)
-    {
-      as_bad (_("can't find opcode "));
-    }
+    as_bad (_("can't find opcode "));
 
   opcode = (h8500_opcode_info *) hash_find (opcode_hash_control, name);
 
@@ -1147,7 +1126,6 @@ md_assemble (str)
     }
 
   build_bytes (opcode, operand);
-
 }
 
 void
@@ -1171,8 +1149,8 @@ tc_headers_hook (headers)
   printf (_("call to tc_headers_hook \n"));
 }
 
-/* Various routines to kill one day */
-/* Equal to MAX_PRECISION in atof-ieee.c */
+/* Various routines to kill one day */
+/* Equal to MAX_PRECISION in atof-ieee.c */
 #define MAX_LITTLENUMS 6
 
 /* Turn a string in input_line_pointer into a floating point constant
@@ -1239,7 +1217,7 @@ CONST char *md_shortopts = "";
 struct option md_longopts[] = {
   {NULL, no_argument, NULL, 0}
 };
-size_t md_longopts_size = sizeof(md_longopts);
+size_t md_longopts_size = sizeof (md_longopts);
 
 int
 md_parse_option (c, arg)
@@ -1262,8 +1240,7 @@ tc_aout_fix_to_chars ()
   abort ();
 }
 
-static
-void
+static void
 wordify_scb (buffer, disp_size, inst_size)
      char *buffer;
      int *disp_size;
@@ -1328,9 +1305,9 @@ wordify_scb (buffer, disp_size, inst_size)
   *buffer++ = 0;
 }
 
-/*
-called after relaxing, change the frags so they know how big they are
-*/
+/* Called after relaxing, change the frags so they know how big they
+   are.  */
+
 void
 md_convert_frag (headers, seg, fragP)
      object_headers *headers;
@@ -1354,9 +1331,9 @@ md_convert_frag (headers, seg, fragP)
       inst_size = 2;
       break;
 
-      /* Branches to a known 16 bit displacement */
+      /* Branches to a known 16 bit displacement */
 
-      /* Turn on the 16bit bit */
+      /* Turn on the 16bit bit */
     case C (BRANCH, WORD_DISP):
     case C (SCB_F, WORD_DISP):
     case C (SCB_TST, WORD_DISP):
@@ -1366,8 +1343,8 @@ md_convert_frag (headers, seg, fragP)
     case C (BRANCH, UNDEF_WORD_DISP):
     case C (SCB_F, UNDEF_WORD_DISP):
     case C (SCB_TST, UNDEF_WORD_DISP):
-      /* This tried to be relaxed, but didn't manage it, it now needs a
-        fix */
+      /* This tried to be relaxed, but didn't manage it, it now needs
+        a fix.  */
       wordify_scb (buffer, &disp_size, &inst_size);
 
       /* Make a reloc */
@@ -1405,7 +1382,7 @@ md_section_align (seg, size)
      segT seg ;
      valueT size;
 {
-  return ((size + (1 << section_alignment[(int) seg]) - 1) 
+  return ((size + (1 << section_alignment[(int) seg]) - 1)
          & (-1 << section_alignment[(int) seg]));
 
 }
@@ -1481,13 +1458,14 @@ md_estimate_size_before_relax (fragP, segment_type)
       if (S_GET_SEGMENT (fragP->fr_symbol) == segment_type)
        {
          /* Got a symbol and it's defined in this segment, become byte
-        sized - maybe it will fix up */
+            sized - maybe it will fix up.  */
          fragP->fr_subtype = C (what, BYTE_DISP);
          fragP->fr_var = md_relax_table[C (what, BYTE_DISP)].rlx_length;
        }
       else
        {
-         /* Its got a segment, but its not ours, so it will always be long */
+         /* Its got a segment, but its not ours, so it will always be
+             long.  */
          fragP->fr_subtype = C (what, UNDEF_WORD_DISP);
          fragP->fr_var = md_relax_table[C (what, WORD_DISP)].rlx_length;
          return md_relax_table[C (what, WORD_DISP)].rlx_length;
@@ -1496,7 +1474,7 @@ md_estimate_size_before_relax (fragP, segment_type)
   return fragP->fr_var;
 }
 
-/* Put number into target byte order */
+/* Put number into target byte order */
 
 void
 md_number_to_chars (ptr, use, nbytes)
@@ -1514,7 +1492,6 @@ md_pcrel_from (fixP)
   return fixP->fx_size + fixP->fx_where + fixP->fx_frag->fr_address;
 }
 
-/*ARGSUSED*/
 void
 tc_coff_symbol_emit_hook (ignore)
      symbolS *ignore;
@@ -1589,8 +1566,10 @@ tc_reloc_mangle (fix_ptr, intr, base)
       dot = segment_info[S_GET_SEGMENT (symbol_ptr)].dot;
       if (dot)
        {
-         /*      intr->r_offset -=
-           segment_info[S_GET_SEGMENT(symbol_ptr)].scnhdr.s_paddr;*/
+#if 0
+         intr->r_offset -=
+           segment_info[S_GET_SEGMENT (symbol_ptr)].scnhdr.s_paddr;
+#endif
          intr->r_offset += S_GET_VALUE (symbol_ptr);
          intr->r_symndx = dot->sy_number;
        }
@@ -1607,8 +1586,6 @@ tc_reloc_mangle (fix_ptr, intr, base)
 
 }
 
-
-
 int
 start_label (ptr)
      char *ptr;
@@ -1622,13 +1599,9 @@ start_label (ptr)
   return 1;
 }
 
-
 int
 tc_coff_sizemachdep (frag)
      fragS *frag;
 {
   return md_relax_table[frag->fr_subtype].rlx_length;
 }
-
-/* end of tc-h8500.c */
-
index 22bba05974b79c107acaa2f855c8e958b5710093..09ec3b6f0ab7f3410a682fd859ba40f7604a798e 100644 (file)
@@ -25,7 +25,6 @@
    sure if its right or not.  Could go either way.  I wish
    I really understood this stuff. */
 
-
 const int table_size_of_flonum_powers_of_ten = 13;
 
 static const LITTLENUM_TYPE zero[] =
@@ -204,6 +203,8 @@ const FLONUM_TYPE flonum_positive_powers_of_ten[] =
 };
 
 #ifdef VMS
-void dummy1 () { }
+void
+dummy1 ()
+{
+}
 #endif
-/* end of flonum_const.c */
index 66ea560c8529b83388e23f2c0c596ec2491d6937..406a11688fa262aa177e647f6e9267ee8bd1bf83 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-07 09:57-0700\n"
+"POT-Creation-Date: 2000-07-10 11:58-0700\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -970,21 +970,21 @@ msgid "Unknown segment type"
 msgstr ""
 
 #. Probably a memory allocation problem?  Give up now.
-#: config/tc-a29k.c:330 config/tc-hppa.c:1401 config/tc-i860.c:202
+#: config/tc-a29k.c:330 config/tc-hppa.c:1417 config/tc-i860.c:202
 #: config/tc-mips.c:1068 config/tc-mips.c:1110 config/tc-sparc.c:806
 msgid "Broken assembler.  No assembly attempted."
 msgstr ""
 
 #: config/tc-a29k.c:375 config/tc-arc.c:535 config/tc-avr.c:1125
 #: config/tc-d10v.c:514 config/tc-d30v.c:553 config/tc-h8300.c:296
-#: config/tc-h8500.c:298 config/tc-mcore.c:656 config/tc-mn10200.c:935
-#: config/tc-mn10300.c:1303 config/tc-ppc.c:1970 config/tc-sh.c:633
+#: config/tc-h8500.c:297 config/tc-mcore.c:656 config/tc-mn10200.c:935
+#: config/tc-mn10300.c:1303 config/tc-ppc.c:1970 config/tc-sh.c:631
 #: config/tc-tic80.c:291 config/tc-v850.c:2034 config/tc-w65.c:257
 #: config/tc-z8k.c:341
 msgid "missing operand"
 msgstr ""
 
-#: config/tc-a29k.c:415 config/tc-hppa.c:1547 config/tc-i860.c:407
+#: config/tc-a29k.c:415 config/tc-hppa.c:1563 config/tc-i860.c:407
 #: config/tc-i860.c:423 config/tc-sparc.c:1369 config/tc-sparc.c:1375
 #, c-format
 msgid "Unknown opcode: `%s'"
@@ -1051,7 +1051,7 @@ msgid "syntax error"
 msgstr ""
 
 #: config/tc-alpha.c:1025 config/tc-arm.c:5343 config/tc-h8300.c:1373
-#: config/tc-h8500.c:1223 config/tc-hppa.c:3989 config/tc-i860.c:813
+#: config/tc-h8500.c:1201 config/tc-hppa.c:4002 config/tc-i860.c:813
 #: config/tc-m68hc11.c:486 config/tc-m68k.c:4125 config/tc-m88k.c:1106
 #: config/tc-ns32k.c:1590 config/tc-sparc.c:2757 config/tc-z8k.c:1354
 msgid "Bad call to MD_ATOF()"
@@ -1363,8 +1363,8 @@ msgid ""
 msgstr ""
 
 #: config/tc-arc.c:155 config/tc-arc.c:178 config/tc-arc.c:922
-#: config/tc-hppa.c:1361 config/tc-hppa.c:6752 config/tc-hppa.c:6758
-#: config/tc-hppa.c:6764 config/tc-hppa.c:6770 config/tc-mn10300.c:891
+#: config/tc-hppa.c:1377 config/tc-hppa.c:6874 config/tc-hppa.c:6880
+#: config/tc-hppa.c:6886 config/tc-hppa.c:6892 config/tc-mn10300.c:891
 #: config/tc-mn10300.c:2020
 msgid "could not set architecture and machine"
 msgstr ""
@@ -1451,7 +1451,7 @@ msgstr ""
 
 #: config/tc-arc.c:1010 config/tc-avr.c:366 config/tc-d10v.c:291
 #: config/tc-d30v.c:366 config/tc-mips.c:8772 config/tc-mn10200.c:355
-#: config/tc-pj.c:365 config/tc-ppc.c:4510 config/tc-sh.c:1822
+#: config/tc-pj.c:365 config/tc-ppc.c:4510 config/tc-sh.c:1819
 #: config/tc-v850.c:1278
 msgid "bad call to md_atof"
 msgstr ""
@@ -1980,7 +1980,7 @@ msgstr ""
 msgid "Can not represent %s relocation in this object file format (%d)"
 msgstr ""
 
-#: config/tc-arm.c:6211 config/tc-mips.c:11321 config/tc-sh.c:2952
+#: config/tc-arm.c:6211 config/tc-mips.c:11321 config/tc-sh.c:2949
 #, c-format
 msgid "Can not represent %s relocation in this object file format"
 msgstr ""
@@ -2225,8 +2225,8 @@ msgid "reloc %d not supported by object file format"
 msgstr ""
 
 #: config/tc-avr.c:1086 config/tc-d10v.c:1085 config/tc-d10v.c:1099
-#: config/tc-h8300.c:1239 config/tc-h8500.c:1122 config/tc-mcore.c:989
-#: config/tc-pj.c:274 config/tc-sh.c:1434 config/tc-z8k.c:1222
+#: config/tc-h8300.c:1239 config/tc-h8500.c:1102 config/tc-mcore.c:989
+#: config/tc-pj.c:274 config/tc-sh.c:1431 config/tc-z8k.c:1222
 msgid "can't find opcode "
 msgstr ""
 
@@ -2580,8 +2580,8 @@ msgstr ""
 msgid "invalid operands"
 msgstr ""
 
-#: config/tc-h8300.c:1250 config/tc-h8500.c:1129 config/tc-mips.c:7968
-#: config/tc-sh.c:1663 config/tc-w65.c:758 config/tc-z8k.c:1234
+#: config/tc-h8300.c:1250 config/tc-h8500.c:1108 config/tc-mips.c:7968
+#: config/tc-sh.c:1660 config/tc-w65.c:758 config/tc-z8k.c:1234
 msgid "unknown opcode"
 msgstr ""
 
@@ -2589,17 +2589,17 @@ msgstr ""
 msgid "mismatch between opcode size and operand size"
 msgstr ""
 
-#: config/tc-h8300.c:1307 config/tc-h8500.c:1157 config/tc-sh.c:1777
+#: config/tc-h8300.c:1307 config/tc-h8500.c:1135 config/tc-sh.c:1774
 #: config/tc-w65.c:790 config/tc-z8k.c:1289
 msgid "call to tc_crawl_symbol_chain \n"
 msgstr ""
 
-#: config/tc-h8300.c:1321 config/tc-h8500.c:1171 config/tc-sh.c:1784
+#: config/tc-h8300.c:1321 config/tc-h8500.c:1149 config/tc-sh.c:1781
 #: config/tc-w65.c:804 config/tc-z8k.c:1303
 msgid "call to tc_headers_hook \n"
 msgstr ""
 
-#: config/tc-h8300.c:1412 config/tc-h8500.c:1261 config/tc-z8k.c:1414
+#: config/tc-h8300.c:1412 config/tc-h8500.c:1239 config/tc-z8k.c:1414
 msgid "call to tc_aout_fix_to_chars \n"
 msgstr ""
 
@@ -2611,435 +2611,435 @@ msgstr ""
 msgid "call tomd_estimate_size_before_relax \n"
 msgstr ""
 
-#: config/tc-h8500.c:338
+#: config/tc-h8500.c:337
 msgid ":24 not valid for this opcode"
 msgstr ""
 
-#: config/tc-h8500.c:345
+#: config/tc-h8500.c:344
 msgid "expect :8,:16 or :24"
 msgstr ""
 
-#: config/tc-h8500.c:402
+#: config/tc-h8500.c:401
 msgid "syntax error in reg list"
 msgstr ""
 
-#: config/tc-h8500.c:420
+#: config/tc-h8500.c:419
 msgid "missing final register in range"
 msgstr ""
 
-#: config/tc-h8500.c:507 config/tc-h8500.c:514 config/tc-h8500.c:520
+#: config/tc-h8500.c:506 config/tc-h8500.c:513 config/tc-h8500.c:519
 msgid "expected @(exp, Rn)"
 msgstr ""
 
-#: config/tc-h8500.c:536
+#: config/tc-h8500.c:535
 msgid "@Rn+ needs word register"
 msgstr ""
 
-#: config/tc-h8500.c:546
+#: config/tc-h8500.c:545
 msgid "@Rn needs word register"
 msgstr ""
 
-#: config/tc-h8500.c:846 config/tc-sh.c:1155
+#: config/tc-h8500.c:842 config/tc-sh.c:1150
 #, c-format
 msgid "unhandled %d\n"
 msgstr ""
 
-#: config/tc-h8500.c:874 config/tc-sh.c:1179
+#: config/tc-h8500.c:870 config/tc-sh.c:1175
 #, c-format
 msgid "operand must be absolute in range %d..%d"
 msgstr ""
 
-#: config/tc-h8500.c:964 config/tc-sh.c:1377
+#: config/tc-h8500.c:959 config/tc-sh.c:1372
 #, c-format
 msgid "failed for %d\n"
 msgstr ""
 
-#: config/tc-h8500.c:1145 config/tc-sh.c:1473 config/tc-sh.c:1711
+#: config/tc-h8500.c:1124 config/tc-sh.c:1470 config/tc-sh.c:1708
 #: config/tc-w65.c:778
 msgid "invalid operands for opcode"
 msgstr ""
 
-#: config/tc-hppa.c:1154
+#: config/tc-hppa.c:1167
 msgid "Missing .exit\n"
 msgstr ""
 
-#: config/tc-hppa.c:1157
+#: config/tc-hppa.c:1170
 msgid "Missing .procend\n"
 msgstr ""
 
-#: config/tc-hppa.c:1336
+#: config/tc-hppa.c:1350
 msgid "Invalid field selector.  Assuming F%%."
 msgstr ""
 
-#: config/tc-hppa.c:1367
+#: config/tc-hppa.c:1383
 msgid "-R option not supported on this target."
 msgstr ""
 
-#: config/tc-hppa.c:1383 config/tc-sparc.c:763 config/tc-sparc.c:798
+#: config/tc-hppa.c:1399 config/tc-sparc.c:763 config/tc-sparc.c:798
 #, c-format
 msgid "Internal error: can't hash `%s': %s\n"
 msgstr ""
 
-#: config/tc-hppa.c:1391 config/tc-i860.c:191
+#: config/tc-hppa.c:1407 config/tc-i860.c:191
 #, c-format
 msgid "internal error: losing opcode: `%s' \"%s\"\n"
 msgstr ""
 
-#: config/tc-hppa.c:1460 config/tc-hppa.c:6891 config/tc-hppa.c:6946
+#: config/tc-hppa.c:1476 config/tc-hppa.c:7013 config/tc-hppa.c:7068
 msgid "Missing function name for .PROC (corrupted label chain)"
 msgstr ""
 
-#: config/tc-hppa.c:1463 config/tc-hppa.c:6949
+#: config/tc-hppa.c:1479 config/tc-hppa.c:7071
 msgid "Missing function name for .PROC"
 msgstr ""
 
-#: config/tc-hppa.c:1584 config/tc-hppa.c:4784
+#: config/tc-hppa.c:1600 config/tc-hppa.c:4891
 msgid "could not update architecture and machine"
 msgstr ""
 
-#: config/tc-hppa.c:1797
+#: config/tc-hppa.c:1813
 msgid "Invalid Indexed Load Completer."
 msgstr ""
 
-#: config/tc-hppa.c:1802
+#: config/tc-hppa.c:1818
 msgid "Invalid Indexed Load Completer Syntax."
 msgstr ""
 
-#: config/tc-hppa.c:1838
+#: config/tc-hppa.c:1854
 msgid "Invalid Short Load/Store Completer."
 msgstr ""
 
-#: config/tc-hppa.c:1897 config/tc-hppa.c:1902
+#: config/tc-hppa.c:1913 config/tc-hppa.c:1918
 msgid "Invalid Store Bytes Short Completer"
 msgstr ""
 
-#: config/tc-hppa.c:2213 config/tc-hppa.c:2219
+#: config/tc-hppa.c:2229 config/tc-hppa.c:2235
 msgid "Invalid left/right combination completer"
 msgstr ""
 
-#: config/tc-hppa.c:2268 config/tc-hppa.c:2275
+#: config/tc-hppa.c:2284 config/tc-hppa.c:2291
 msgid "Invalid permutation completer"
 msgstr ""
 
-#: config/tc-hppa.c:2376
+#: config/tc-hppa.c:2392
 #, c-format
 msgid "Invalid Add Condition: %s"
 msgstr ""
 
-#: config/tc-hppa.c:2387 config/tc-hppa.c:2397
+#: config/tc-hppa.c:2403 config/tc-hppa.c:2413
 #, c-format
 msgid "Invalid Add and Branch Condition: %c"
 msgstr ""
 
-#: config/tc-hppa.c:2418
+#: config/tc-hppa.c:2434
 msgid "Invalid Compare/Subtract Condition"
 msgstr ""
 
-#: config/tc-hppa.c:2458
+#: config/tc-hppa.c:2474
 #, c-format
 msgid "Invalid Bit Branch Condition: %c"
 msgstr ""
 
-#: config/tc-hppa.c:2544
+#: config/tc-hppa.c:2560
 #, c-format
 msgid "Invalid Compare/Subtract Condition: %s"
 msgstr ""
 
-#: config/tc-hppa.c:2556
+#: config/tc-hppa.c:2572
 #, c-format
 msgid "Invalid Compare/Subtract Condition: %c"
 msgstr ""
 
-#: config/tc-hppa.c:2571
+#: config/tc-hppa.c:2587
 msgid "Invalid Compare and Branch Condition."
 msgstr ""
 
-#: config/tc-hppa.c:2669
+#: config/tc-hppa.c:2683
 msgid "Invalid Logical Instruction Condition."
 msgstr ""
 
-#: config/tc-hppa.c:2725
+#: config/tc-hppa.c:2738
 msgid "Invalid Shift/Extract/Deposit Condition."
 msgstr ""
 
-#: config/tc-hppa.c:2837
+#: config/tc-hppa.c:2850
 msgid "Invalid Unit Instruction Condition."
 msgstr ""
 
-#: config/tc-hppa.c:3185 config/tc-hppa.c:3216 config/tc-hppa.c:3249
-#: config/tc-hppa.c:3281
+#: config/tc-hppa.c:3198 config/tc-hppa.c:3229 config/tc-hppa.c:3262
+#: config/tc-hppa.c:3294
 msgid "Branch to unaligned address"
 msgstr ""
 
-#: config/tc-hppa.c:3463
+#: config/tc-hppa.c:3476
 msgid "Invalid SFU identifier"
 msgstr ""
 
-#: config/tc-hppa.c:3513
+#: config/tc-hppa.c:3526
 msgid "Invalid COPR identifier"
 msgstr ""
 
-#: config/tc-hppa.c:3642
+#: config/tc-hppa.c:3655
 msgid "Invalid Floating Point Operand Format."
 msgstr ""
 
-#: config/tc-hppa.c:3780 config/tc-hppa.c:3804 config/tc-hppa.c:3827
-#: config/tc-hppa.c:3850 config/tc-hppa.c:3873
+#: config/tc-hppa.c:3793 config/tc-hppa.c:3817 config/tc-hppa.c:3840
+#: config/tc-hppa.c:3863 config/tc-hppa.c:3886
 msgid "Invalid register for single precision fmpyadd or fmpysub"
 msgstr ""
 
-#: config/tc-hppa.c:3933
+#: config/tc-hppa.c:3946
 #, c-format
 msgid "Invalid operands %s"
 msgstr ""
 
-#: config/tc-hppa.c:4484
+#: config/tc-hppa.c:4591
 msgid "Unknown relocation encountered in md_apply_fix."
 msgstr ""
 
-#: config/tc-hppa.c:4494
+#: config/tc-hppa.c:4601
 #, c-format
 msgid "no hppa_fixup entry for this fixup (fixP = 0x%x, type = 0x%x)\n"
 msgstr ""
 
-#: config/tc-hppa.c:4636 config/tc-hppa.c:4661
+#: config/tc-hppa.c:4743 config/tc-hppa.c:4768
 #, c-format
 msgid "Undefined register: '%s'."
 msgstr ""
 
-#: config/tc-hppa.c:4699
+#: config/tc-hppa.c:4806
 #, c-format
 msgid "Non-absolute symbol: '%s'."
 msgstr ""
 
-#: config/tc-hppa.c:4714
+#: config/tc-hppa.c:4821
 #, c-format
 msgid "Undefined absolute constant: '%s'."
 msgstr ""
 
-#: config/tc-hppa.c:4823
+#: config/tc-hppa.c:4930
 #, c-format
 msgid "Invalid FP Compare Condition: %s"
 msgstr ""
 
-#: config/tc-hppa.c:4879
+#: config/tc-hppa.c:4986
 #, c-format
 msgid "Invalid FTEST completer: %s"
 msgstr ""
 
-#: config/tc-hppa.c:4946 config/tc-hppa.c:4984
+#: config/tc-hppa.c:5053 config/tc-hppa.c:5091
 #, c-format
 msgid "Invalid FP Operand Format: %3s"
 msgstr ""
 
-#: config/tc-hppa.c:5063
+#: config/tc-hppa.c:5170
 msgid "Bad segment in expression."
 msgstr ""
 
-#: config/tc-hppa.c:5122
+#: config/tc-hppa.c:5229
 msgid "Bad segment (should be absolute)."
 msgstr ""
 
-#: config/tc-hppa.c:5165
+#: config/tc-hppa.c:5272
 #, c-format
 msgid "Invalid argument location: %s\n"
 msgstr ""
 
-#: config/tc-hppa.c:5196
+#: config/tc-hppa.c:5303
 #, c-format
 msgid "Invalid argument description: %d"
 msgstr ""
 
-#: config/tc-hppa.c:5219
+#: config/tc-hppa.c:5326
 #, c-format
 msgid "Invalid Nullification: (%c)"
 msgstr ""
 
-#: config/tc-hppa.c:5961
+#: config/tc-hppa.c:6068
 #, c-format
 msgid "Invalid .CALL argument: %s"
 msgstr ""
 
-#: config/tc-hppa.c:6093
+#: config/tc-hppa.c:6200
 msgid ".callinfo is not within a procedure definition"
 msgstr ""
 
-#: config/tc-hppa.c:6113
+#: config/tc-hppa.c:6220
 #, c-format
 msgid "FRAME parameter must be a multiple of 8: %d\n"
 msgstr ""
 
-#: config/tc-hppa.c:6132
+#: config/tc-hppa.c:6239
 msgid "Value for ENTRY_GR must be in the range 3..18\n"
 msgstr ""
 
-#: config/tc-hppa.c:6144
+#: config/tc-hppa.c:6251
 msgid "Value for ENTRY_FR must be in the range 12..21\n"
 msgstr ""
 
-#: config/tc-hppa.c:6154
+#: config/tc-hppa.c:6261
 msgid "Value for ENTRY_SR must be 3\n"
 msgstr ""
 
-#: config/tc-hppa.c:6210
+#: config/tc-hppa.c:6317
 #, c-format
 msgid "Invalid .CALLINFO argument: %s"
 msgstr ""
 
-#: config/tc-hppa.c:6304
+#: config/tc-hppa.c:6428
 msgid "The .ENTER pseudo-op is not supported"
 msgstr ""
 
-#: config/tc-hppa.c:6320
+#: config/tc-hppa.c:6444
 msgid "Misplaced .entry. Ignored."
 msgstr ""
 
-#: config/tc-hppa.c:6324
+#: config/tc-hppa.c:6448
 msgid "Missing .callinfo."
 msgstr ""
 
-#: config/tc-hppa.c:6372
+#: config/tc-hppa.c:6496
 msgid ".REG must use a label"
 msgstr ""
 
-#: config/tc-hppa.c:6374
+#: config/tc-hppa.c:6498
 msgid ".EQU must use a label"
 msgstr ""
 
-#: config/tc-hppa.c:6427
+#: config/tc-hppa.c:6551
 msgid ".EXIT must appear within a procedure"
 msgstr ""
 
-#: config/tc-hppa.c:6431
+#: config/tc-hppa.c:6555
 msgid "Missing .callinfo"
 msgstr ""
 
-#: config/tc-hppa.c:6435
+#: config/tc-hppa.c:6559
 msgid "No .ENTRY for this .EXIT"
 msgstr ""
 
-#: config/tc-hppa.c:6462
+#: config/tc-hppa.c:6586
 #, c-format
 msgid "Cannot define export symbol: %s\n"
 msgstr ""
 
-#: config/tc-hppa.c:6522
+#: config/tc-hppa.c:6643
 #, c-format
 msgid "Using ENTRY rather than CODE in export directive for %s"
 msgstr ""
 
-#: config/tc-hppa.c:6631
+#: config/tc-hppa.c:6753
 #, c-format
 msgid "Undefined .EXPORT/.IMPORT argument (ignored): %s"
 msgstr ""
 
-#: config/tc-hppa.c:6713
+#: config/tc-hppa.c:6835
 msgid "Missing label name on .LABEL"
 msgstr ""
 
-#: config/tc-hppa.c:6718
+#: config/tc-hppa.c:6840
 msgid "extra .LABEL arguments ignored."
 msgstr ""
 
-#: config/tc-hppa.c:6735
+#: config/tc-hppa.c:6857
 msgid "The .LEAVE pseudo-op is not supported"
 msgstr ""
 
-#: config/tc-hppa.c:6774
+#: config/tc-hppa.c:6896
 msgid "Unrecognized .LEVEL argument\n"
 msgstr ""
 
-#: config/tc-hppa.c:6810
+#: config/tc-hppa.c:6932
 #, c-format
 msgid "Cannot define static symbol: %s\n"
 msgstr ""
 
-#: config/tc-hppa.c:6845
+#: config/tc-hppa.c:6967
 msgid "Nested procedures"
 msgstr ""
 
-#: config/tc-hppa.c:6855
+#: config/tc-hppa.c:6977
 msgid "Cannot allocate unwind descriptor\n"
 msgstr ""
 
-#: config/tc-hppa.c:6953
+#: config/tc-hppa.c:7075
 msgid "misplaced .procend"
 msgstr ""
 
-#: config/tc-hppa.c:6956
+#: config/tc-hppa.c:7078
 msgid "Missing .callinfo for this procedure"
 msgstr ""
 
-#: config/tc-hppa.c:6959
+#: config/tc-hppa.c:7081
 msgid "Missing .EXIT for a .ENTRY"
 msgstr ""
 
-#: config/tc-hppa.c:6998
+#: config/tc-hppa.c:7120
 msgid "Not in a space.\n"
 msgstr ""
 
-#: config/tc-hppa.c:7001
+#: config/tc-hppa.c:7123
 msgid "Not in a subspace.\n"
 msgstr ""
 
-#: config/tc-hppa.c:7091
+#: config/tc-hppa.c:7213
 msgid "Invalid .SPACE argument"
 msgstr ""
 
-#: config/tc-hppa.c:7139
+#: config/tc-hppa.c:7261
 msgid "Can't change spaces within a procedure definition. Ignored"
 msgstr ""
 
-#: config/tc-hppa.c:7266
+#: config/tc-hppa.c:7388
 #, c-format
 msgid "Undefined space: '%s' Assuming space number = 0."
 msgstr ""
 
-#: config/tc-hppa.c:7290
+#: config/tc-hppa.c:7412
 msgid "Must be in a space before changing or declaring subspaces.\n"
 msgstr ""
 
-#: config/tc-hppa.c:7294
+#: config/tc-hppa.c:7416
 msgid "Can't change subspaces within a procedure definition. Ignored"
 msgstr ""
 
-#: config/tc-hppa.c:7329
+#: config/tc-hppa.c:7451
 msgid "Parameters of an existing subspace can't be modified"
 msgstr ""
 
-#: config/tc-hppa.c:7380
+#: config/tc-hppa.c:7502
 msgid "Alignment must be a power of 2"
 msgstr ""
 
-#: config/tc-hppa.c:7422
+#: config/tc-hppa.c:7544
 msgid "FIRST not supported as a .SUBSPACE argument"
 msgstr ""
 
-#: config/tc-hppa.c:7424
+#: config/tc-hppa.c:7546
 msgid "Invalid .SUBSPACE argument"
 msgstr ""
 
-#: config/tc-hppa.c:7607
+#: config/tc-hppa.c:7729
 #, c-format
 msgid "Internal error: Unable to find containing space for %s."
 msgstr ""
 
-#: config/tc-hppa.c:7648
+#: config/tc-hppa.c:7770
 #, c-format
 msgid "Out of memory: could not allocate new space chain entry: %s\n"
 msgstr ""
 
-#: config/tc-hppa.c:7734
+#: config/tc-hppa.c:7856
 #, c-format
 msgid "Out of memory: could not allocate new subspace chain entry: %s\n"
 msgstr ""
 
-#: config/tc-hppa.c:8401
+#: config/tc-hppa.c:8495
 #, c-format
 msgid "Symbol '%s' could not be created."
 msgstr ""
 
-#: config/tc-hppa.c:8405
+#: config/tc-hppa.c:8499
 msgid "No memory for symbol name."
 msgstr ""
 
@@ -4871,7 +4871,7 @@ msgstr ""
 msgid "pc-relative"
 msgstr ""
 
-#: config/tc-mcore.c:2421 config/tc-pj.c:586 config/tc-sh.c:3099
+#: config/tc-mcore.c:2421 config/tc-pj.c:586 config/tc-sh.c:3096
 #, c-format
 msgid "Cannot represent relocation type %s"
 msgstr ""
@@ -5617,12 +5617,12 @@ msgid ""
 "-big\t\t\tgenerate big endian code\n"
 msgstr ""
 
-#: config/tc-pj.c:472 config/tc-sh.c:2660 config/tc-sh.c:2667
-#: config/tc-sh.c:2674 config/tc-sh.c:2681
+#: config/tc-pj.c:472 config/tc-sh.c:2657 config/tc-sh.c:2664
+#: config/tc-sh.c:2671 config/tc-sh.c:2678
 msgid "pcrel too far"
 msgstr ""
 
-#: config/tc-pj.c:541 config/tc-sh.c:2756
+#: config/tc-pj.c:541 config/tc-sh.c:2753
 msgid "offset out of range"
 msgstr ""
 
@@ -5862,105 +5862,105 @@ msgstr ""
 msgid "Gas failure, reloc value %d\n"
 msgstr ""
 
-#: config/tc-sh.c:676
+#: config/tc-sh.c:671
 msgid "illegal register after @-"
 msgstr ""
 
-#: config/tc-sh.c:692
+#: config/tc-sh.c:687
 msgid "must be @(r0,...)"
 msgstr ""
 
-#: config/tc-sh.c:708
+#: config/tc-sh.c:703
 msgid "syntax error in @(r0,...)"
 msgstr ""
 
-#: config/tc-sh.c:740 config/tc-sh.c:745
+#: config/tc-sh.c:736 config/tc-sh.c:741
 msgid "syntax error in @(disp,[Rn, gbr, pc])"
 msgstr ""
 
-#: config/tc-sh.c:750
+#: config/tc-sh.c:746
 msgid "expecting )"
 msgstr ""
 
-#: config/tc-sh.c:759
+#: config/tc-sh.c:755
 msgid "illegal register after @"
 msgstr ""
 
-#: config/tc-sh.c:1320
+#: config/tc-sh.c:1315
 #, c-format
 msgid "Invalid register: 'r%d'"
 msgstr ""
 
-#: config/tc-sh.c:1478
+#: config/tc-sh.c:1475
 msgid "insn can't be combined with parallel processing insn"
 msgstr ""
 
-#: config/tc-sh.c:1485 config/tc-sh.c:1496
+#: config/tc-sh.c:1482 config/tc-sh.c:1493
 msgid "multiple movx specifications"
 msgstr ""
 
-#: config/tc-sh.c:1490 config/tc-sh.c:1517
+#: config/tc-sh.c:1487 config/tc-sh.c:1514
 msgid "multiple movy specifications"
 msgstr ""
 
-#: config/tc-sh.c:1498
+#: config/tc-sh.c:1495
 msgid "invalid movx address register"
 msgstr ""
 
-#: config/tc-sh.c:1504 config/tc-sh.c:1509
+#: config/tc-sh.c:1501 config/tc-sh.c:1506
 msgid "invalid movx dsp register"
 msgstr ""
 
-#: config/tc-sh.c:1526 config/tc-sh.c:1531
+#: config/tc-sh.c:1523 config/tc-sh.c:1528
 msgid "invalid movy dsp register"
 msgstr ""
 
-#: config/tc-sh.c:1535
+#: config/tc-sh.c:1532
 msgid "invalid movy address register"
 msgstr ""
 
-#: config/tc-sh.c:1541
+#: config/tc-sh.c:1538
 msgid "dsp immediate shift value not constant"
 msgstr ""
 
-#: config/tc-sh.c:1548 config/tc-sh.c:1561
+#: config/tc-sh.c:1545 config/tc-sh.c:1558
 msgid "multiple parallel processing specifications"
 msgstr ""
 
-#: config/tc-sh.c:1554
+#: config/tc-sh.c:1551
 msgid "multiple condition specifications"
 msgstr ""
 
-#: config/tc-sh.c:1570
+#: config/tc-sh.c:1567
 msgid "insn cannot be combined with pmuls"
 msgstr ""
 
-#: config/tc-sh.c:1587
+#: config/tc-sh.c:1584
 msgid "bad padd / psub pmuls output operand"
 msgstr ""
 
-#: config/tc-sh.c:1597
+#: config/tc-sh.c:1594
 msgid "condition not followed by conditionalizable insn"
 msgstr ""
 
-#: config/tc-sh.c:1607
+#: config/tc-sh.c:1604
 msgid "unrecognized characters at end of parallel processing insn"
 msgstr ""
 
-#: config/tc-sh.c:1716
+#: config/tc-sh.c:1713
 #, c-format
 msgid "excess operands: '%s'"
 msgstr ""
 
-#: config/tc-sh.c:1863
+#: config/tc-sh.c:1860
 msgid ".uses pseudo-op seen when not relaxing"
 msgstr ""
 
-#: config/tc-sh.c:1869
+#: config/tc-sh.c:1866
 msgid "bad .uses format"
 msgstr ""
 
-#: config/tc-sh.c:1930
+#: config/tc-sh.c:1927
 msgid ""
 "SH options:\n"
 "-little\t\t\tgenerate little endian code\n"
@@ -5969,63 +5969,63 @@ msgid ""
 "-dsp\t\t\tenable sh-dsp insns, and disable sh3e / sh4 insns.\n"
 msgstr ""
 
-#: config/tc-sh.c:1941 config/tc-w65.c:882
+#: config/tc-sh.c:1938 config/tc-w65.c:882
 msgid "call to tc_Nout_fix_to_chars \n"
 msgstr ""
 
-#: config/tc-sh.c:2027
+#: config/tc-sh.c:2022
 msgid ".uses does not refer to a local symbol in the same section"
 msgstr ""
 
-#: config/tc-sh.c:2046
+#: config/tc-sh.c:2041
 msgid "can't find fixup pointed to by .uses"
 msgstr ""
 
-#: config/tc-sh.c:2069
+#: config/tc-sh.c:2064
 msgid ".uses target does not refer to a local symbol in the same section"
 msgstr ""
 
-#: config/tc-sh.c:2166
+#: config/tc-sh.c:2161
 #, c-format
 msgid "at 0x%lx, displacement overflows 12-bit field"
 msgstr ""
 
-#: config/tc-sh.c:2169
+#: config/tc-sh.c:2164
 #, c-format
 msgid "at 0x%lx, displacement to defined symbol %s overflows 12-bit field"
 msgstr ""
 
-#: config/tc-sh.c:2173
+#: config/tc-sh.c:2168
 #, c-format
 msgid "at 0x%lx, displacement to undefined symbol %s overflows 12-bit field"
 msgstr ""
 
-#: config/tc-sh.c:2289
+#: config/tc-sh.c:2285
 #, c-format
 msgid "at 0x%lx, displacement overflows 8-bit field"
 msgstr ""
 
-#: config/tc-sh.c:2292
+#: config/tc-sh.c:2288
 #, c-format
 msgid "at 0x%lx, displacement to defined symbol %s overflows 8-bit field "
 msgstr ""
 
-#: config/tc-sh.c:2296
+#: config/tc-sh.c:2292
 #, c-format
 msgid "at 0x%lx, displacement to undefined symbol %s overflows 8-bit field "
 msgstr ""
 
-#: config/tc-sh.c:2349
+#: config/tc-sh.c:2346
 #, c-format
 msgid "overflow in branch to %s; converted into longer instruction sequence"
 msgstr ""
 
-#: config/tc-sh.c:2424 config/tc-sh.c:2452 config/tc-sparc.c:4002
+#: config/tc-sh.c:2421 config/tc-sh.c:2449 config/tc-sparc.c:4002
 #: config/tc-sparc.c:4021
 msgid "misaligned data"
 msgstr ""
 
-#: config/tc-sh.c:2748
+#: config/tc-sh.c:2745
 msgid "misaligned offset"
 msgstr ""
 
@@ -6562,66 +6562,69 @@ msgstr ""
 msgid "Barf, bad mode %x\n"
 msgstr ""
 
-#: config/tc-tic54x.c:79
+#: config/tc-tic54x.c:78
 msgid "C54x-specific command line  options:\n"
 msgstr ""
 
-#: config/tc-tic54x.c:80
+#: config/tc-tic54x.c:79
 msgid "-mfar-mode | -mf          Use extended addressing\n"
 msgstr ""
 
-#: config/tc-tic54x.c:81
+#: config/tc-tic54x.c:80
 msgid "-mcpu=<CPU version>       Specify the CPU version\n"
 msgstr ""
 
-#. fprintf (stream, _("-mcoff-version={0|1|2}    Select COFF version\n"));
-#: config/tc-tic54x.c:83
-msgid "-merrors-to-file <filename>\n"
+#: config/tc-tic54x.c:82
+msgid "-mcoff-version={0|1|2}    Select COFF version\n"
 msgstr ""
 
 #: config/tc-tic54x.c:84
+msgid "-merrors-to-file <filename>\n"
+msgstr ""
+
+#: config/tc-tic54x.c:85
 msgid "-me <filename>            Redirect errors to a file\n"
 msgstr ""
 
-#: config/tc-tic54x.c:329
+#: config/tc-tic54x.c:334
 msgid "Comma and symbol expected for '.asg STRING, SYMBOL'"
 msgstr ""
 
-#: config/tc-tic54x.c:383
+#: config/tc-tic54x.c:387
 msgid "Unterminated string after absolute expression"
 msgstr ""
 
-#: config/tc-tic54x.c:391
+#: config/tc-tic54x.c:395
 msgid "Comma and symbol expected for '.eval EXPR, SYMBOL'"
 msgstr ""
 
-#: config/tc-tic54x.c:403
+#: config/tc-tic54x.c:407
 msgid "symbols assigned with .eval must begin with a letter"
 msgstr ""
 
-#: config/tc-tic54x.c:657
+#: config/tc-tic54x.c:659
 msgid "Offset on nested structures is ignored"
 msgstr ""
 
-#: config/tc-tic54x.c:706
+#: config/tc-tic54x.c:708
 #, c-format
 msgid ".end%s without preceding .%s"
 msgstr ""
 
-#: config/tc-tic54x.c:773
+#: config/tc-tic54x.c:774
 #, c-format
 msgid "Unrecognized struct/union tag '%s'"
 msgstr ""
 
-#: config/tc-tic54x.c:775
+#: config/tc-tic54x.c:776
 msgid ".tag requires a structure tag"
 msgstr ""
 
-#: config/tc-tic54x.c:781
+#: config/tc-tic54x.c:782
 msgid "Label required for .tag"
 msgstr ""
 
-#: config/tc-tic54x.c:798
+#: config/tc-tic54x.c:799
 #, c-format
 msgid ".tag target '%s' undefined"
 msgstr ""
@@ -6642,368 +6645,368 @@ msgstr ""
 msgid "Relocatable values require at least WORD storage"
 msgstr ""
 
-#: config/tc-tic54x.c:1084
+#: config/tc-tic54x.c:1083
 msgid "Use of .def/.ref is deprecated.  Use .global instead"
 msgstr ""
 
-#: config/tc-tic54x.c:1275
+#: config/tc-tic54x.c:1270
 msgid ".space/.bes repeat count is negative, ignored"
 msgstr ""
 
-#: config/tc-tic54x.c:1280
+#: config/tc-tic54x.c:1275
 msgid ".space/.bes repeat count is zero, ignored"
 msgstr ""
 
-#: config/tc-tic54x.c:1358
+#: config/tc-tic54x.c:1352
 msgid "Missing size argument"
 msgstr ""
 
-#: config/tc-tic54x.c:1493
+#: config/tc-tic54x.c:1489
 msgid "CPU version has already been set"
 msgstr ""
 
-#: config/tc-tic54x.c:1497
+#: config/tc-tic54x.c:1493
 #, c-format
 msgid "Unrecognized version '%s'"
 msgstr ""
 
-#: config/tc-tic54x.c:1503
+#: config/tc-tic54x.c:1499
 msgid "Changing of CPU version on the fly not supported"
 msgstr ""
 
-#: config/tc-tic54x.c:1637
+#: config/tc-tic54x.c:1632
 msgid "p2align not supported on this target"
 msgstr ""
 
-#: config/tc-tic54x.c:1649
+#: config/tc-tic54x.c:1645
 msgid "Argument to .even ignored"
 msgstr ""
 
-#: config/tc-tic54x.c:1696
+#: config/tc-tic54x.c:1691
 msgid "Invalid field size, must be from 1 to 32"
 msgstr ""
 
-#: config/tc-tic54x.c:1708
+#: config/tc-tic54x.c:1703
 msgid "field size must be 16 when value is relocatable"
 msgstr ""
 
-#: config/tc-tic54x.c:1722
+#: config/tc-tic54x.c:1717
 msgid "field value truncated"
 msgstr ""
 
-#: config/tc-tic54x.c:1828 config/tc-tic54x.c:2144
+#: config/tc-tic54x.c:1821 config/tc-tic54x.c:2128
 #, c-format
 msgid "Unrecognized section '%s'"
 msgstr ""
 
-#: config/tc-tic54x.c:1837
+#: config/tc-tic54x.c:1830
 msgid "Current section is unitialized, section name required for .clink"
 msgstr ""
 
-#: config/tc-tic54x.c:2049
+#: config/tc-tic54x.c:2036
 msgid "ENDLOOP without corresponding LOOP"
 msgstr ""
 
-#: config/tc-tic54x.c:2096
+#: config/tc-tic54x.c:2081
 msgid "Mixing of normal and extended addressing not supported"
 msgstr ""
 
-#: config/tc-tic54x.c:2102
+#: config/tc-tic54x.c:2087
 msgid "Extended addressing not supported on the specified CPU"
 msgstr ""
 
-#: config/tc-tic54x.c:2150
+#: config/tc-tic54x.c:2134
 msgid ".sblock may be used for initialized sections only"
 msgstr ""
 
-#: config/tc-tic54x.c:2181
+#: config/tc-tic54x.c:2164
 msgid "Symbol missing for .set/.equ"
 msgstr ""
 
-#: config/tc-tic54x.c:2238
+#: config/tc-tic54x.c:2219
 msgid ".var may only be used within a macro definition"
 msgstr ""
 
-#: config/tc-tic54x.c:2246
+#: config/tc-tic54x.c:2227
 msgid "Substitution symbols must begin with a letter"
 msgstr ""
 
-#: config/tc-tic54x.c:2337
+#: config/tc-tic54x.c:2317
 #, c-format
 msgid "Can't open macro library file '%s' for reading."
 msgstr ""
 
-#: config/tc-tic54x.c:2344
+#: config/tc-tic54x.c:2324
 #, c-format
 msgid "File '%s' not in macro archive format"
 msgstr ""
 
-#: config/tc-tic54x.c:2493
+#: config/tc-tic54x.c:2472
 #, c-format
 msgid "Bad COFF version '%s'"
 msgstr ""
 
-#: config/tc-tic54x.c:2502
+#: config/tc-tic54x.c:2481
 #, c-format
 msgid "Bad CPU version '%s'"
 msgstr ""
 
-#: config/tc-tic54x.c:2514 config/tc-tic54x.c:2517
+#: config/tc-tic54x.c:2493 config/tc-tic54x.c:2496
 #, c-format
 msgid "Can't redirect stderr to the file '%s'"
 msgstr ""
 
-#: config/tc-tic54x.c:2647
+#: config/tc-tic54x.c:2632
 #, c-format
 msgid "Undefined substitution symbol '%s'"
 msgstr ""
 
-#: config/tc-tic54x.c:3293
+#: config/tc-tic54x.c:3308
 msgid "Badly formed address expression"
 msgstr ""
 
-#: config/tc-tic54x.c:3552
+#: config/tc-tic54x.c:3569
 #, c-format
 msgid "Invalid dmad syntax '%s'"
 msgstr ""
 
-#: config/tc-tic54x.c:3668
+#: config/tc-tic54x.c:3685
 msgid "Address mode *+ARx is write-only. Results of reading are undefined."
 msgstr ""
 
-#: config/tc-tic54x.c:3688
+#: config/tc-tic54x.c:3705
 #, c-format
 msgid "Unrecognized indirect address format \"%s\""
 msgstr ""
 
-#: config/tc-tic54x.c:3725
+#: config/tc-tic54x.c:3742
 #, c-format
 msgid "Operand '%s' out of range (%d <= x <= %d)"
 msgstr ""
 
-#: config/tc-tic54x.c:3745
+#: config/tc-tic54x.c:3762
 msgid "Error in relocation handling"
 msgstr ""
 
-#: config/tc-tic54x.c:3766 config/tc-tic54x.c:3831 config/tc-tic54x.c:3861
+#: config/tc-tic54x.c:3783 config/tc-tic54x.c:3847 config/tc-tic54x.c:3877
 #, c-format
 msgid "Unrecognized condition code \"%s\""
 msgstr ""
 
-#: config/tc-tic54x.c:3784
+#: config/tc-tic54x.c:3800
 #, c-format
 msgid "Condition \"%s\" does not match preceding group"
 msgstr ""
 
-#: config/tc-tic54x.c:3792
+#: config/tc-tic54x.c:3808
 #, c-format
 msgid ""
 "Condition \"%s\" uses a different accumulator from a preceding condition"
 msgstr ""
 
-#: config/tc-tic54x.c:3799
+#: config/tc-tic54x.c:3815
 msgid "Only one comparison conditional allowed"
 msgstr ""
 
-#: config/tc-tic54x.c:3804
+#: config/tc-tic54x.c:3820
 msgid "Only one overflow conditional allowed"
 msgstr ""
 
-#: config/tc-tic54x.c:3812
+#: config/tc-tic54x.c:3828
 #, c-format
 msgid "Duplicate %s conditional"
 msgstr ""
 
-#: config/tc-tic54x.c:3846
+#: config/tc-tic54x.c:3862
 msgid "Invalid auxiliary register (use AR0-AR7)"
 msgstr ""
 
-#: config/tc-tic54x.c:3881
+#: config/tc-tic54x.c:3897
 msgid "lk addressing modes are invalid for memory-mapped register addressing"
 msgstr ""
 
-#: config/tc-tic54x.c:3889
+#: config/tc-tic54x.c:3905
 msgid ""
 "Address mode *+ARx is not allowed in memory-mapped register addressing.  "
 "Resulting behavior is undefined."
 msgstr ""
 
-#: config/tc-tic54x.c:3915
+#: config/tc-tic54x.c:3931
 msgid ""
 "Destination accumulator for each part of this parallel instruction must be "
 "different"
 msgstr ""
 
-#: config/tc-tic54x.c:3962
+#: config/tc-tic54x.c:3978
 #, c-format
 msgid "Memory mapped register \"%s\" out of range"
 msgstr ""
 
-#: config/tc-tic54x.c:4001
+#: config/tc-tic54x.c:4017
 msgid "Invalid operand (use 1, 2, or 3)"
 msgstr ""
 
-#: config/tc-tic54x.c:4026
+#: config/tc-tic54x.c:4042
 msgid "A status register or status bit name is required"
 msgstr ""
 
-#: config/tc-tic54x.c:4036
+#: config/tc-tic54x.c:4052
 #, c-format
 msgid "Unrecognized status bit \"%s\""
 msgstr ""
 
-#: config/tc-tic54x.c:4058
+#: config/tc-tic54x.c:4074
 #, c-format
 msgid "Invalid status register \"%s\""
 msgstr ""
 
-#: config/tc-tic54x.c:4070
+#: config/tc-tic54x.c:4086
 #, c-format
 msgid "Operand \"%s\" out of range (use 1 or 2)"
 msgstr ""
 
-#: config/tc-tic54x.c:4268
+#: config/tc-tic54x.c:4282
 #, c-format
 msgid "Unrecognized instruction \"%s\""
 msgstr ""
 
-#: config/tc-tic54x.c:4297
+#: config/tc-tic54x.c:4311
 #, c-format
 msgid "Unrecognized operand list '%s' for instruction '%s'"
 msgstr ""
 
-#: config/tc-tic54x.c:4328
+#: config/tc-tic54x.c:4341
 #, c-format
 msgid "Unrecognized parallel instruction \"%s\""
 msgstr ""
 
-#: config/tc-tic54x.c:4379
+#: config/tc-tic54x.c:4392
 #, c-format
 msgid "Invalid operand (s) for parallel instruction \"%s\""
 msgstr ""
 
-#: config/tc-tic54x.c:4382
+#: config/tc-tic54x.c:4395
 #, c-format
 msgid "Unrecognized parallel instruction combination \"%s || %s\""
 msgstr ""
 
-#: config/tc-tic54x.c:4608
+#: config/tc-tic54x.c:4620
 #, c-format
 msgid "%s symbol recursion stopped at second appearance of '%s'"
 msgstr ""
 
-#: config/tc-tic54x.c:4647
+#: config/tc-tic54x.c:4659
 msgid "Unrecognized substitution symbol function"
 msgstr ""
 
-#: config/tc-tic54x.c:4652
+#: config/tc-tic54x.c:4664
 msgid "Missing '(' after substitution symbol function"
 msgstr ""
 
-#: config/tc-tic54x.c:4666
+#: config/tc-tic54x.c:4678
 msgid "Expecting second argument"
 msgstr ""
 
-#: config/tc-tic54x.c:4679 config/tc-tic54x.c:4728
+#: config/tc-tic54x.c:4691 config/tc-tic54x.c:4739
 msgid "Extra junk in function call, expecting ')'"
 msgstr ""
 
-#: config/tc-tic54x.c:4704
+#: config/tc-tic54x.c:4715
 msgid "Function expects two arguments"
 msgstr ""
 
-#: config/tc-tic54x.c:4717
+#: config/tc-tic54x.c:4728
 msgid "Expecting character constant argument"
 msgstr ""
 
-#: config/tc-tic54x.c:4723
+#: config/tc-tic54x.c:4734
 msgid "Both arguments must be substitution symbols"
 msgstr ""
 
-#: config/tc-tic54x.c:4777
+#: config/tc-tic54x.c:4786
 #, c-format
 msgid "Invalid subscript (use 1 to %d)"
 msgstr ""
 
-#: config/tc-tic54x.c:4787
+#: config/tc-tic54x.c:4796
 #, c-format
 msgid "Invalid length (use 0 to %d"
 msgstr ""
 
-#: config/tc-tic54x.c:4797
+#: config/tc-tic54x.c:4806
 msgid "Missing ')' in subscripted substitution symbol expression"
 msgstr ""
 
-#: config/tc-tic54x.c:4817
+#: config/tc-tic54x.c:4826
 msgid "Missing forced substitution terminator ':'"
 msgstr ""
 
-#: config/tc-tic54x.c:4993
+#: config/tc-tic54x.c:4998
 #, c-format
 msgid ""
 "Instruction does not fit in available delay slots (%d-word insn, %d slots "
 "left)"
 msgstr ""
 
-#: config/tc-tic54x.c:5034
+#: config/tc-tic54x.c:5039
 #, c-format
 msgid "Unrecognized parallel instruction '%s'"
 msgstr ""
 
-#: config/tc-tic54x.c:5046
+#: config/tc-tic54x.c:5051
 #, c-format
 msgid "Instruction '%s' requires an LP cpu version"
 msgstr ""
 
-#: config/tc-tic54x.c:5053
+#: config/tc-tic54x.c:5058
 #, c-format
 msgid "Instruction '%s' requires far mode addressing"
 msgstr ""
 
-#: config/tc-tic54x.c:5065
+#: config/tc-tic54x.c:5070
 #, c-format
 msgid ""
 "Instruction does not fit in available delay slots (%d-word insn, %d slots "
 "left). Resulting behavior is undefined."
 msgstr ""
 
-#: config/tc-tic54x.c:5075
+#: config/tc-tic54x.c:5080
 msgid ""
 "Instructions which cause PC discontinuity are not allowed in a delay slot. "
 "Resulting behavior is undefined."
 msgstr ""
 
-#: config/tc-tic54x.c:5085
+#: config/tc-tic54x.c:5091
 #, c-format
 msgid "'%s' is not repeatable. Resulting behavior is undefined."
 msgstr ""
 
-#: config/tc-tic54x.c:5089
+#: config/tc-tic54x.c:5095
 msgid ""
 "Instructions using long offset modifiers or absolute addresses are not "
 "repeatable. Resulting behavior is undefined."
 msgstr ""
 
-#: config/tc-tic54x.c:5273
+#: config/tc-tic54x.c:5277
 #, c-format
 msgid "Unsupported relocation size %d"
 msgstr ""
 
-#: config/tc-tic54x.c:5422
+#: config/tc-tic54x.c:5424
 msgid "non-absolute value used with .space/.bes"
 msgstr ""
 
-#: config/tc-tic54x.c:5426
+#: config/tc-tic54x.c:5428
 #, c-format
 msgid "negative value ignored in %s"
 msgstr ""
 
-#: config/tc-tic54x.c:5513
+#: config/tc-tic54x.c:5515
 #, c-format
 msgid "attempt to .space/.bes backwards? (%ld)"
 msgstr ""
 
-#: config/tc-tic54x.c:5546
+#: config/tc-tic54x.c:5547
 #, c-format
 msgid "Invalid label '%s'"
 msgstr ""
@@ -7511,12 +7514,12 @@ msgstr ""
 msgid "Can't subtract symbols in different sections %s %s"
 msgstr ""
 
-#: depend.c:195
+#: depend.c:197
 #, c-format
 msgid "Can't open `%s' for writing"
 msgstr ""
 
-#: depend.c:207
+#: depend.c:209
 #, c-format
 msgid "Can't close `%s'"
 msgstr ""
This page took 0.053663 seconds and 4 git commands to generate.