aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2006-07-20 21:37:39 +0000
committerEvan Cheng <evan.cheng@apple.com>2006-07-20 21:37:39 +0000
commitcbac2fa23a346351a2d09270f356279c1243897d (patch)
tree3f49a2ccf738e76ac9dd96c022cf5fab20e01f88
parent4446fcdf9e2af9779d76a1de0acc7a2020926ab3 (diff)
Clean up.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29228 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/X86/X86InstrInfo.td6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/X86/X86InstrInfo.td b/lib/Target/X86/X86InstrInfo.td
index 9d478f5ef7..14b8740335 100644
--- a/lib/Target/X86/X86InstrInfo.td
+++ b/lib/Target/X86/X86InstrInfo.td
@@ -1404,11 +1404,11 @@ def SHL32ri : Ii8<0xC1, MRM4r, (ops GR32:$dst, GR32:$src1, i8imm:$src2),
// Shift left by one. Not used because (add x, x) is slightly cheaper.
def SHL8r1 : I<0xD0, MRM4r, (ops GR8 :$dst, GR8 :$src1),
- "shl{b} {$dst|$dst}", []>;
+ "shl{b} $dst", []>;
def SHL16r1 : I<0xD1, MRM4r, (ops GR16:$dst, GR16:$src1),
- "shl{w} {$dst|$dst}", []>, OpSize;
+ "shl{w} $dst", []>, OpSize;
def SHL32r1 : I<0xD1, MRM4r, (ops GR32:$dst, GR32:$src1),
- "shl{l} {$dst|$dst}", []>;
+ "shl{l} $dst", []>;
let isTwoAddress = 0 in {
def SHL8mCL : I<0xD2, MRM4m, (ops i8mem :$dst),