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

Evan Cheng evan.cheng at apple.com
Mon Dec 12 16:25:18 PST 2005



Changes in directory llvm/lib/Target/X86:

X86InstrInfo.td updated: 1.157 -> 1.158
---
Log message:

Missed a couple redundant explicit type casts.


---
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.157 llvm/lib/Target/X86/X86InstrInfo.td:1.158
--- llvm/lib/Target/X86/X86InstrInfo.td:1.157	Mon Dec 12 18:14:11 2005
+++ llvm/lib/Target/X86/X86InstrInfo.td	Mon Dec 12 18:25:07 2005
@@ -354,15 +354,15 @@
 
 def OUT8ir  : Ii8<0xE6, RawFrm, (ops i16i8imm:$port),
                    "out{b} {%al, $port|$port, %AL}",
-                   [(writeport AL, (i16 i16immZExt8:$port))]>,
+                   [(writeport AL, i16immZExt8:$port)]>,
                    Imp<[AL], []>;
 def OUT16ir : Ii8<0xE7, RawFrm, (ops i16i8imm:$port),
                    "out{w} {%ax, $port|$port, %AX}",
-                   [(writeport AX, (i16 i16immZExt8:$port))]>,
+                   [(writeport AX, i16immZExt8:$port)]>,
                    Imp<[AX], []>, OpSize;
 def OUT32ir : Ii8<0xE7, RawFrm, (ops i16i8imm:$port),
                    "out{l} {%eax, $port|$port, %EAX}",
-                   [(writeport EAX, (i16 i16immZExt8:$port))]>,
+                   [(writeport EAX, i16immZExt8:$port)]>,
                    Imp<[EAX], []>;
 
 //===----------------------------------------------------------------------===//






More information about the llvm-commits mailing list