[llvm-commits] CVS: llvm/lib/Target/X86/X86InstrInfo.td

Evan Cheng evan.cheng at apple.com
Thu Jul 20 14:37:51 PDT 2006



Changes in directory llvm/lib/Target/X86:

X86InstrInfo.td updated: 1.280 -> 1.281
---
Log message:

Clean up.

---
Diffs of the changes:  (+3 -3)

 X86InstrInfo.td |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm/lib/Target/X86/X86InstrInfo.td
diff -u llvm/lib/Target/X86/X86InstrInfo.td:1.280 llvm/lib/Target/X86/X86InstrInfo.td:1.281
--- llvm/lib/Target/X86/X86InstrInfo.td:1.280	Tue Jul 18 19:27:29 2006
+++ llvm/lib/Target/X86/X86InstrInfo.td	Thu Jul 20 16:37:39 2006
@@ -1404,11 +1404,11 @@
 
 // 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),






More information about the llvm-commits mailing list