diff options
author | Mike Pall <mike> | 2021-07-19 16:05:05 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2021-07-19 16:05:05 +0200 |
commit | 44bd7437a27e0d19bcf878c20ad27a673f17f40b (patch) | |
tree | 41159e44ee5bf87b2b67c7de55df8203d7b3d067 /src/jit | |
parent | 98f95f69180d48ce49289d6428b46a9ccdd67a46 (diff) | |
download | luajit-44bd7437a27e0d19bcf878c20ad27a673f17f40b.tar.gz luajit-44bd7437a27e0d19bcf878c20ad27a673f17f40b.tar.bz2 luajit-44bd7437a27e0d19bcf878c20ad27a673f17f40b.zip |
Fix jit.dump() output for IR_CONV.
Diffstat (limited to 'src/jit')
-rw-r--r-- | src/jit/dump.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jit/dump.lua b/src/jit/dump.lua index e7f694d6..22568ac7 100644 --- a/src/jit/dump.lua +++ b/src/jit/dump.lua | |||
@@ -272,7 +272,7 @@ local litname = { | |||
272 | s = irtype[band(shr(mode, 5), 31)].."."..s | 272 | s = irtype[band(shr(mode, 5), 31)].."."..s |
273 | if band(mode, 0x400) ~= 0 then s = s.." trunc" | 273 | if band(mode, 0x400) ~= 0 then s = s.." trunc" |
274 | elseif band(mode, 0x800) ~= 0 then s = s.." sext" end | 274 | elseif band(mode, 0x800) ~= 0 then s = s.." sext" end |
275 | local c = shr(mode, 14) | 275 | local c = shr(mode, 12) |
276 | if c == 2 then s = s.." index" elseif c == 3 then s = s.." check" end | 276 | if c == 2 then s = s.." index" elseif c == 3 then s = s.." check" end |
277 | t[mode] = s | 277 | t[mode] = s |
278 | return s | 278 | return s |