diff options
| author | hjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-12-10 23:21:06 +0000 |
|---|---|---|
| committer | hjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-12-10 23:21:06 +0000 |
| commit | f20b89baccfb19235f3662763f1ca018153676c9 (patch) | |
| tree | 5f3fbca939a4863e52e5aa6f46ca7418e7ee9203 | |
| parent | 0971524ec03d8d070a4ceb03d69827e81fd14788 (diff) | |
| download | ppe42-gcc-f20b89baccfb19235f3662763f1ca018153676c9.tar.gz ppe42-gcc-f20b89baccfb19235f3662763f1ca018153676c9.zip | |
Properly handle alternative 13 in *movsf_internal
PR target/59458
* config/i386/i386.md (*movsf_internal): Set mode to SI for
alternative 13.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@205876 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 6 | ||||
| -rw-r--r-- | gcc/config/i386/i386.md | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d9f27b911a1..fe57c5dfee7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2013-12-10 H.J. Lu <hongjiu.lu@intel.com> + + PR target/59458 + * config/i386/i386.md (*movsf_internal): Set mode to SI for + alternative 13. + 2013-12-10 Eric Botcazou <ebotcazou@adacore.com> PR rtl-optimization/58295 diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 713886885d0..6ac2802c029 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -3126,7 +3126,7 @@ (const_string "1") (const_string "*"))) (set (attr "mode") - (cond [(eq_attr "alternative" "3,4,9,10,14,15") + (cond [(eq_attr "alternative" "3,4,9,10,13,14,15") (const_string "SI") (eq_attr "alternative" "11") (const_string "DI") |

