OSDN Git Service

* config/mips/mips.md (*branch_fp): Use %Z2 for the condition.
authorrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 13 Mar 2006 22:48:56 +0000 (22:48 +0000)
committerrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 13 Mar 2006 22:48:56 +0000 (22:48 +0000)
(*branch_fp_inverted): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@112027 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 2d47b36..8325f0f 100644 (file)
@@ -1,3 +1,8 @@
+2006-03-13  Richard Sandiford  <richard@codesourcery.com>
+
+       * config/mips/mips.md (*branch_fp): Use %Z2 for the condition.
+       (*branch_fp_inverted): Likewise.
+
 2006-03-13  Jakub Jelinek  <jakub@redhat.com>
 
        PR middle-end/25989
index 01653d6..cc327f9 100644 (file)
   "TARGET_HARD_FLOAT"
 {
   return mips_output_conditional_branch (insn, operands,
-                                        MIPS_BRANCH ("b%F0", "%2,%1"),
-                                        MIPS_BRANCH ("b%W0", "%2,%1"));
+                                        MIPS_BRANCH ("b%F0", "%Z2%1"),
+                                        MIPS_BRANCH ("b%W0", "%Z2%1"));
 }
   [(set_attr "type" "branch")
    (set_attr "mode" "none")])
   "TARGET_HARD_FLOAT"
 {
   return mips_output_conditional_branch (insn, operands,
-                                        MIPS_BRANCH ("b%W0", "%2,%1"),
-                                        MIPS_BRANCH ("b%F0", "%2,%1"));
+                                        MIPS_BRANCH ("b%W0", "%Z2%1"),
+                                        MIPS_BRANCH ("b%F0", "%Z2%1"));
 }
   [(set_attr "type" "branch")
    (set_attr "mode" "none")])