projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
72920ec
)
[X86] STOSQ without a rep prefix doesn't read or write RCX.
author
Craig Topper
<craig.topper@gmail.com>
Thu, 7 Jan 2016 05:18:49 +0000
(
05:18
+0000)
committer
Craig Topper
<craig.topper@gmail.com>
Thu, 7 Jan 2016 05:18:49 +0000
(
05:18
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@257030
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Target/X86/X86InstrInfo.td
patch
|
blob
|
history
diff --git
a/lib/Target/X86/X86InstrInfo.td
b/lib/Target/X86/X86InstrInfo.td
index
ea8e562
..
8ee3004
100644
(file)
--- a/
lib/Target/X86/X86InstrInfo.td
+++ b/
lib/Target/X86/X86InstrInfo.td
@@
-1273,7
+1273,7
@@
def STOSW : I<0xAB, RawFrmDst, (outs dstidx16:$dst), (ins),
let Defs = [EDI], Uses = [EAX,EDI,EFLAGS] in
def STOSL : I<0xAB, RawFrmDst, (outs dstidx32:$dst), (ins),
"stos{l|d}\t{%eax, $dst|$dst, eax}", [], IIC_STOS>, OpSize32;
-let Defs = [R
CX,RDI], Uses = [RAX,RC
X,RDI,EFLAGS] in
+let Defs = [R
DI], Uses = [RA
X,RDI,EFLAGS] in
def STOSQ : RI<0xAB, RawFrmDst, (outs dstidx64:$dst), (ins),
"stosq\t{%rax, $dst|$dst, rax}", [], IIC_STOS>;