From dcfd875366c5ee2a115cfe4582830e8f6279b811 Mon Sep 17 00:00:00 2001 From: Uros Bizjak Date: Wed, 10 Aug 2011 09:22:52 +0200 Subject: [PATCH] i386.md (lround2): Do not force operands[0] into a register. * config/i386/i386.md (lround2): Do not force operands[0] into a register. From-SVN: r177611 --- gcc/config/i386/i386.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 784de1a0651..1b37118cfb8 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -14577,10 +14577,7 @@ && !flag_trapping_math && !flag_rounding_math) ix86_expand_lround (operand0, operand1); else - { - operands[0] = force_reg (mode, operands[0]); - ix86_emit_i387_round (operands[0], operands[1]); - } + ix86_emit_i387_round (operands[0], operands[1]); DONE; }) -- 2.30.2