diff options
author | uros <uros@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-08-10 07:22:52 +0000 |
---|---|---|
committer | uros <uros@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-08-10 07:22:52 +0000 |
commit | 0e3f4c53c7c177276277c47b5aa259fa4ff7fd18 (patch) | |
tree | 18eb1c387565f88f2e05d365528438122e88c438 | |
parent | e5738d7cc14899e6c4aff5ae32dec5b4a2fb15f1 (diff) | |
download | gcc-0e3f4c53c7c177276277c47b5aa259fa4ff7fd18.tar.gz |
* config/i386/i386.md (lround<X87MODEF:mode><SWI248x:mode>2): Do not
force operands[0] into a register.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@177611 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/config/i386/i386.md | 5 |
1 files changed, 1 insertions, 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 (<SWI248x:MODE>mode, operands[0]); - ix86_emit_i387_round (operands[0], operands[1]); - } + ix86_emit_i387_round (operands[0], operands[1]); DONE; }) |