diff options
Diffstat (limited to 'gcc/config/mips/mips.md')
-rw-r--r-- | gcc/config/mips/mips.md | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/gcc/config/mips/mips.md b/gcc/config/mips/mips.md index 3e220d0..97caec2 100644 --- a/gcc/config/mips/mips.md +++ b/gcc/config/mips/mips.md @@ -4317,22 +4317,11 @@ beq\t%2,%.,1b\;\ DONE; }) -(define_expand "cmpdf" - [(set (cc0) - (compare:CC (match_operand:DF 0 "register_operand") - (match_operand:DF 1 "register_operand")))] - "TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT" -{ - cmp_operands[0] = operands[0]; - cmp_operands[1] = operands[1]; - DONE; -}) - -(define_expand "cmpsf" +(define_expand "cmp<mode>" [(set (cc0) - (compare:CC (match_operand:SF 0 "register_operand") - (match_operand:SF 1 "register_operand")))] - "TARGET_HARD_FLOAT" + (compare:CC (match_operand:SCALARF 0 "register_operand") + (match_operand:SCALARF 1 "register_operand")))] + "" { cmp_operands[0] = operands[0]; cmp_operands[1] = operands[1]; |