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:
parent
11a5f60849
commit
94c5a84153
2 changed files with 9 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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")])
|
||||
|
|
Loading…
Add table
Reference in a new issue