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

Chris Lattner lattner at cs.uiuc.edu
Tue Nov 29 21:11:30 PST 2005



Changes in directory llvm/lib/Target/X86:

X86InstrInfo.td updated: 1.142 -> 1.143
---
Log message:

Fix a bug in a recent patch that broke shifts


---
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.142 llvm/lib/Target/X86/X86InstrInfo.td:1.143
--- llvm/lib/Target/X86/X86InstrInfo.td:1.142	Tue Nov 29 13:38:52 2005
+++ llvm/lib/Target/X86/X86InstrInfo.td	Tue Nov 29 23:11:18 2005
@@ -918,11 +918,11 @@
   def SHL32mCL : I<0xD3, MRM4m, (ops i32mem:$dst),
                    "shl{l} {%cl, $dst|$dst, %CL}", []>, Imp<[CL],[]>;
   def SHL8mi   : Ii8<0xC0, MRM4m, (ops i8mem :$dst, i8imm:$src),
-                     "shl{b} {$src, $dst|$dst, $src}, []", []>;
+                     "shl{b} {$src, $dst|$dst, $src}", []>;
   def SHL16mi  : Ii8<0xC1, MRM4m, (ops i16mem:$dst, i8imm:$src),
-                     "shl{w} {$src, $dst|$dst, $src}, []", []>, OpSize;
+                     "shl{w} {$src, $dst|$dst, $src}", []>, OpSize;
   def SHL32mi  : Ii8<0xC1, MRM4m, (ops i32mem:$dst, i8imm:$src),
-                     "shl{l} {$src, $dst|$dst, $src}, []", []>;
+                     "shl{l} {$src, $dst|$dst, $src}", []>;
 }
 
 def SHR8rCL  : I<0xD2, MRM5r, (ops R8 :$dst, R8 :$src),






More information about the llvm-commits mailing list