1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

Fix typo. Change %cl to CL in Intel pattern.

llvm-svn: 186815
This commit is contained in:
Craig Topper 2013-07-22 10:07:26 +00:00
parent 9f41c21050
commit 01a5872b6a

View File

@ -537,7 +537,7 @@ def ROL32mCL : I<0xD3, MRM0m, (outs), (ins i32mem:$dst),
[(store (rotl (loadi32 addr:$dst), CL), addr:$dst)],
IIC_SR>;
def ROL64mCL : RI<0xD3, MRM0m, (outs), (ins i64mem:$dst),
"rol{q}\t{%cl, $dst|$dst, %cl}",
"rol{q}\t{%cl, $dst|$dst, CL}",
[(store (rotl (loadi64 addr:$dst), CL), addr:$dst)],
IIC_SR>;
}