Commit 467a1bf1 by Maxim Kuvyrkov Committed by Maxim Kuvyrkov

* config/m68k/m68k.md (cmpdi): Use (scratch) instead of pseudo.

From-SVN: r142176
parent 370d36c6
2008-11-24 Maxim Kuvyrkov <maxim@codesourcery.com>
* config/m68k/m68k.md (cmpdi): Use (scratch) instead of pseudo.
2008-11-24 Richard Sandiford <rdsandiford@googlemail.com> 2008-11-24 Richard Sandiford <rdsandiford@googlemail.com>
* config/mips/mips.h (ASM_OUTPUT_DEBUG_LABEL): Define. * config/mips/mips.h (ASM_OUTPUT_DEBUG_LABEL): Define.
......
...@@ -432,15 +432,15 @@ ...@@ -432,15 +432,15 @@
[(set (cc0) [(set (cc0)
(compare (match_operand:DI 0 "nonimmediate_operand" "") (compare (match_operand:DI 0 "nonimmediate_operand" "")
(match_operand:DI 1 "general_operand" ""))) (match_operand:DI 1 "general_operand" "")))
(clobber (match_dup 2))])] (clobber (match_scratch:DI 2 ""))])]
"" ""
"m68k_last_compare_had_fp_operands = 0; operands[2] = gen_reg_rtx (DImode);") "m68k_last_compare_had_fp_operands = 0;")
(define_insn "" (define_insn ""
[(set (cc0) [(set (cc0)
(compare (match_operand:DI 1 "nonimmediate_operand" "0,d") (compare (match_operand:DI 1 "nonimmediate_operand" "0,d")
(match_operand:DI 2 "general_operand" "d,0"))) (match_operand:DI 2 "general_operand" "d,0")))
(clobber (match_operand:DI 0 "register_operand" "=d,d"))] (clobber (match_scratch:DI 0 "=d,d"))]
"" ""
{ {
if (rtx_equal_p (operands[0], operands[1])) if (rtx_equal_p (operands[0], operands[1]))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment