diff options
author | Uros Bizjak <ubizjak@gmail.com> | 2013-03-22 20:15:41 +0100 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2013-03-22 20:15:41 +0100 |
commit | 23b7850d108033107eb0327d4440c43b1f53dbe1 (patch) | |
tree | 09d0cc5c5f9a3a544a12ed0a58e15fdf1e2e59d3 /gcc | |
parent | bed852cf7a299422a8454b6a26e2fa87aaffabf5 (diff) | |
download | gcc-23b7850d108033107eb0327d4440c43b1f53dbe1.zip gcc-23b7850d108033107eb0327d4440c43b1f53dbe1.tar.gz gcc-23b7850d108033107eb0327d4440c43b1f53dbe1.tar.bz2 |
i386.md (*movdi_internal): Set prefix_rex attribute also for alternatives 16 and 17.
* config/i386/i386.md (*movdi_internal): Set prefix_rex attribute
also for alternatives 16 and 17.
From-SVN: r196982
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/i386.md | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6677a77..a437a63 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2013-03-22 Uros Bizjak <ubizjak@gmail.com> + * config/i386/i386.md (*movdi_internal): Set prefix_rex attribute + also for alternatives 16 and 17. + +2013-03-22 Uros Bizjak <ubizjak@gmail.com> + * config/i386/sse.md (*mov<mode>_internal): Merge with *mov<mode>_internal_rex64. Use x64 and nox64 isa attributes. Emit insn template depending on type attribute. Use diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 69354d5..475da37 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -1970,7 +1970,7 @@ (const_string "8") (const_string "*"))) (set (attr "prefix_rex") - (if_then_else (eq_attr "alternative" "10,11") + (if_then_else (eq_attr "alternative" "10,11,16,17") (const_string "1") (const_string "*"))) (set (attr "prefix") |