]> gcc.gnu.org Git - gcc.git/commitdiff
mips.md (movsi_usw): if operand 1 is const_int 0, use $0 instead of 0.
authorAndrew Haley <aph@cygnus.com>
Thu, 16 Sep 1999 12:06:56 +0000 (12:06 +0000)
committerAndrew Haley <aph@gcc.gnu.org>
Thu, 16 Sep 1999 12:06:56 +0000 (12:06 +0000)
1999-09-14  Andrew Haley  <aph@cygnus.com>

* config/mips/mips.md (movsi_usw): if operand 1 is const_int 0,
use $0 instead of 0.

From-SVN: r29456

gcc/ChangeLog
gcc/config/mips/mips.md

index cb20deb9a93f901abafa3a6db7e3beb64ed4e1de..8d886682f7793fe6d8763ba7ac33ba60f7660dda 100644 (file)
@@ -1,3 +1,8 @@
+1999-09-14  Andrew Haley  <aph@cygnus.com>
+
+       * config/mips/mips.md (movsi_usw): if operand 1 is const_int 0,
+       use $0 instead of 0.
+
 Thu Sep 16 10:53:36 1999  Bernd Schmidt  <bernds@cygnus.co.uk>
 
        * reload1.c (order_regs_for_reload): Move hard_reg_n_uses
index ff03d01e1d527c35f02398c7bcc00e1683f0b0d6..4b52cd2081a0a054bd234e175c869fd532c1433a 100644 (file)
@@ -4622,7 +4622,7 @@ move\\t%0,%z4\\n\\
 
   if ((INTVAL (offset) & 3) == 0
       && (mem_addr == stack_pointer_rtx || mem_addr == frame_pointer_rtx))
-    return \"sw\\t%1,%0\";
+    return \"sw\\t%z1,%0\";
 
   return \"usw\\t%z1,%0\";
 }"
This page took 0.083051 seconds and 5 git commands to generate.