From 94c5a84153af895ba99c7de5ebd2448e4d80c4d5 Mon Sep 17 00:00:00 2001 From: Richard Sandiford Date: Mon, 13 Mar 2006 22:48:56 +0000 Subject: [PATCH] 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 --- gcc/ChangeLog | 5 +++++ gcc/config/mips/mips.md | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2d47b362156..8325f0fed4a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2006-03-13 Richard Sandiford + + * config/mips/mips.md (*branch_fp): Use %Z2 for the condition. + (*branch_fp_inverted): Likewise. + 2006-03-13 Jakub Jelinek PR middle-end/25989 diff --git a/gcc/config/mips/mips.md b/gcc/config/mips/mips.md index 01653d62143..cc327f95aee 100644 --- a/gcc/config/mips/mips.md +++ b/gcc/config/mips/mips.md @@ -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")])