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
This commit is contained in:
Richard Sandiford 2006-03-13 22:48:56 +00:00 committed by Richard Sandiford
parent 11a5f60849
commit 94c5a84153
2 changed files with 9 additions and 4 deletions

View 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

View File

@ -4284,8 +4284,8 @@
"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")])
@ -4301,8 +4301,8 @@
"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")])