summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2005-12-13 00:25:07 +0000
committerEvan Cheng <evan.cheng@apple.com>2005-12-13 00:25:07 +0000
commitc414d563f0de0371a77ebff188ed2c8c2c3830d5 (patch)
tree743240d131c94ffefb712b475e9834adc6dc9b12 /llvm/lib
parent62e6808aa5a4df8801a80a85339add6bc8d85a88 (diff)
downloadbcm5719-llvm-c414d563f0de0371a77ebff188ed2c8c2c3830d5.tar.gz
bcm5719-llvm-c414d563f0de0371a77ebff188ed2c8c2c3830d5.zip
Missed a couple redundant explicit type casts.
llvm-svn: 24684
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Target/X86/X86InstrInfo.td6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/X86/X86InstrInfo.td b/llvm/lib/Target/X86/X86InstrInfo.td
index a3c16c70ec8..736b8a90d1d 100644
--- a/llvm/lib/Target/X86/X86InstrInfo.td
+++ b/llvm/lib/Target/X86/X86InstrInfo.td
@@ -354,15 +354,15 @@ def OUT32rr : I<0xEF, RawFrm, (ops),
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], []>;
//===----------------------------------------------------------------------===//
OpenPOWER on IntegriCloud