mirror of git://gcc.gnu.org/git/gcc.git
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
|
|
@ -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>
|
2006-03-13 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
PR middle-end/25989
|
PR middle-end/25989
|
||||||
|
|
|
||||||
|
|
@ -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 @@
|
||||||
"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")])
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue