mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-30 20:34:21 +00:00
Missed a couple redundant explicit type casts.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24684 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9b6b642647
commit
5a38e0210d
@ -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], []>;
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
Loading…
x
Reference in New Issue
Block a user