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-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dcfd875366c5ee2a115cfe4582830e8f6279b811;p=gcc.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 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; })