Add IRCONV_NONE for pass-through INT to I64/U64 type change.

This commit is contained in:
Mike Pall
2021-07-19 16:11:39 +02:00
parent 76fbf0397c
commit 71db0cf043
5 changed files with 7 additions and 4 deletions

View File

@@ -278,7 +278,9 @@ local litname = {
s = irtype[band(shr(mode, 5), 31)].."."..s
if band(mode, 0x800) ~= 0 then s = s.." sext" end
local c = shr(mode, 12)
if c == 2 then s = s.." index" elseif c == 3 then s = s.." check" end
if c == 1 then s = s.." none"
elseif c == 2 then s = s.." index"
elseif c == 3 then s = s.." check" end
t[mode] = s
return s
end}),