diff options
author | Dan Gohman <gohman@apple.com> | 2009-04-30 03:11:48 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-04-30 03:11:48 +0000 |
commit | 78e04d4aa0a31adee89b919d0bc66051c157f137 (patch) | |
tree | df385ec8435c93335efbde9dfe1a792fa56d4fae | |
parent | d9c1c85c2acb6fb2003c6053ea1114e7aee68774 (diff) |
Set mayLoad on MOVZX32_NOREXrm8 too.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@70466 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/X86InstrInfo.td | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/X86/X86InstrInfo.td b/lib/Target/X86/X86InstrInfo.td index 218faad95c..33e0a3d67d 100644 --- a/lib/Target/X86/X86InstrInfo.td +++ b/lib/Target/X86/X86InstrInfo.td @@ -2939,6 +2939,7 @@ def MOVZX32_NOREXrr8 : I<0xB6, MRMSrcReg, (outs GR32_NOREX:$dst), (ins GR8:$src), "movz{bl|x}\t{$src, $dst|$dst, $src} # NOREX", []>, TB; +let mayLoad = 1 in def MOVZX32_NOREXrm8 : I<0xB6, MRMSrcMem, (outs GR32_NOREX:$dst), (ins i8mem:$src), "movz{bl|x}\t{$src, $dst|$dst, $src} # NOREX", |