* config/tc-mips.c (macro): Remove a trailing 0 from NOP
authorMaciej W. Rozycki <macro@linux-mips.org>
Thu, 9 Dec 2010 22:29:18 +0000 (22:29 +0000)
committerMaciej W. Rozycki <macro@linux-mips.org>
Thu, 9 Dec 2010 22:29:18 +0000 (22:29 +0000)
requests.

gas/ChangeLog
gas/config/tc-mips.c

index d8feb68b2797fd3c2c81d9a6a9d391622a4c15c6..aa6508f4445440d5df9f2378f5f2084520fa7a9c 100644 (file)
@@ -1,3 +1,8 @@
+2010-12-09  Maciej W. Rozycki  <macro@codesourcery.com>
+
+       * config/tc-mips.c (macro): Remove a trailing 0 from NOP
+       requests.
+
 2010-12-09  Maciej W. Rozycki  <macro@codesourcery.com>
 
        * config/tc-mips.c (macro): Use EXTRACT_OPERAND to get register
index 8a7456ad2ff2d6338537ab9f7f4530db95d36763..18db32532146897e25cb09af65bded2100873900 100644 (file)
@@ -4848,7 +4848,7 @@ macro (struct mips_cl_insn *ip)
       expr1.X_add_number = 8;
       macro_build (&expr1, "bgez", "s,p", sreg);
       if (dreg == sreg)
-       macro_build (NULL, "nop", "", 0);
+       macro_build (NULL, "nop", "");
       else
        move_register (dreg, sreg);
       macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, 0, sreg);
@@ -4999,7 +4999,7 @@ macro (struct mips_cl_insn *ip)
        do_false:
          /* Result is always false.  */
          if (! likely)
-           macro_build (NULL, "nop", "", 0);
+           macro_build (NULL, "nop", "");
          else
            macro_build (&offset_expr, "bnel", "s,t,p", ZERO, ZERO);
          break;
@@ -5415,7 +5415,7 @@ macro (struct mips_cl_insn *ip)
        {
          expr1.X_add_number = 8;
          macro_build (&expr1, "bne", "s,t,p", sreg, AT);
-         macro_build (NULL, "nop", "", 0);
+         macro_build (NULL, "nop", "");
 
          /* We want to close the noreorder block as soon as possible, so
             that later insns are available for delay slot filling.  */
@@ -7444,7 +7444,7 @@ macro (struct mips_cl_insn *ip)
        {
          expr1.X_add_number = 8;
          macro_build (&expr1, "beq", "s,t,p", dreg, AT);
-         macro_build (NULL, "nop", "", 0);
+         macro_build (NULL, "nop", "");
          macro_build (NULL, "break", "c", 6);
        }
       end_noreorder ();
@@ -7475,7 +7475,7 @@ macro (struct mips_cl_insn *ip)
        {
          expr1.X_add_number = 8;
          macro_build (&expr1, "beq", "s,t,p", AT, ZERO);
-         macro_build (NULL, "nop", "", 0);
+         macro_build (NULL, "nop", "");
          macro_build (NULL, "break", "c", 6);
        }
       end_noreorder ();