diff options
author | Uros Bizjak <ubizjak@gmail.com> | 2016-04-27 19:45:32 +0200 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2016-04-27 19:45:32 +0200 |
commit | 3d2795a030d9d0e31fc0834448cf0aad7c8c3536 (patch) | |
tree | 63de1630f1b461e703bb8d4ac9372d7e2ccb240f /gcc | |
parent | 087146caa7269d4ed40e685d19c8d66884f07a8a (diff) | |
download | gcc-3d2795a030d9d0e31fc0834448cf0aad7c8c3536.zip gcc-3d2795a030d9d0e31fc0834448cf0aad7c8c3536.tar.gz gcc-3d2795a030d9d0e31fc0834448cf0aad7c8c3536.tar.bz2 |
i386.md (lea arith with mem operand + setcc peephole2): Set operator mode.
* config/i386/i386.md
(lea arith with mem operand + setcc peephole2): Set operator mode.
From-SVN: r235519
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/i386.md | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 71c7d1f..68164c0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2016-04-27 Uros Bizjak <ubizjak@gmail.com> + + * config/i386/i386.md + (lea arith with mem operand + setcc peephole2): Set operator mode. + 2016-04-27 H.J. Lu <hongjiu.lu@intel.com> PR target/70155 diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 30764c9..049f625 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -18023,8 +18023,8 @@ [(set (match_operand:SWI 0 "register_operand") (match_operand:SWI 1 "memory_operand")) (set (match_operand:SWI 3 "register_operand") - (plus (match_dup 0) - (match_operand:SWI 2 "<nonmemory_operand>"))) + (plus:SWI (match_dup 0) + (match_operand:SWI 2 "<nonmemory_operand>"))) (set (match_dup 1) (match_dup 3)) (set (reg FLAGS_REG) (compare (match_dup 3) (const_int 0)))] "(TARGET_READ_MODIFY_WRITE || optimize_insn_for_size_p ()) |