Commit 94c5a841 by Richard Sandiford Committed by Richard Sandiford

mips.md (*branch_fp): Use %Z2 for the condition.

	* config/mips/mips.md (*branch_fp): Use %Z2 for the condition.
	(*branch_fp_inverted): Likewise.

From-SVN: r112027
parent 11a5f608
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> 2006-03-13 Jakub Jelinek <jakub@redhat.com>
PR middle-end/25989 PR middle-end/25989
......
...@@ -4284,8 +4284,8 @@ ...@@ -4284,8 +4284,8 @@
"TARGET_HARD_FLOAT" "TARGET_HARD_FLOAT"
{ {
return mips_output_conditional_branch (insn, operands, return mips_output_conditional_branch (insn, operands,
MIPS_BRANCH ("b%F0", "%2,%1"), MIPS_BRANCH ("b%F0", "%Z2%1"),
MIPS_BRANCH ("b%W0", "%2,%1")); MIPS_BRANCH ("b%W0", "%Z2%1"));
} }
[(set_attr "type" "branch") [(set_attr "type" "branch")
(set_attr "mode" "none")]) (set_attr "mode" "none")])
...@@ -4301,8 +4301,8 @@ ...@@ -4301,8 +4301,8 @@
"TARGET_HARD_FLOAT" "TARGET_HARD_FLOAT"
{ {
return mips_output_conditional_branch (insn, operands, return mips_output_conditional_branch (insn, operands,
MIPS_BRANCH ("b%W0", "%2,%1"), MIPS_BRANCH ("b%W0", "%Z2%1"),
MIPS_BRANCH ("b%F0", "%2,%1")); MIPS_BRANCH ("b%F0", "%Z2%1"));
} }
[(set_attr "type" "branch") [(set_attr "type" "branch")
(set_attr "mode" "none")]) (set_attr "mode" "none")])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment