From: Uros Bizjak Date: Wed, 10 Aug 2011 07:22:52 +0000 (+0200) Subject: i386.md (lround2): Do not force operands[0] into a register. X-Git-Tag: releases/gcc-4.7.0~4519 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dcfd875366c5ee2a115cfe4582830e8f6279b811;p=thirdparty%2Fgcc.git 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 --- diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 784de1a06511..1b37118cfb8d 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; })