diff options
Diffstat (limited to 'src/jit')
| -rw-r--r-- | src/jit/dump.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/jit/dump.lua b/src/jit/dump.lua index abd72287..34ced76d 100644 --- a/src/jit/dump.lua +++ b/src/jit/dump.lua | |||
| @@ -278,7 +278,9 @@ local litname = { | |||
| 278 | s = irtype[band(shr(mode, 5), 31)].."."..s | 278 | s = irtype[band(shr(mode, 5), 31)].."."..s |
| 279 | if band(mode, 0x800) ~= 0 then s = s.." sext" end | 279 | if band(mode, 0x800) ~= 0 then s = s.." sext" end |
| 280 | local c = shr(mode, 12) | 280 | local c = shr(mode, 12) |
| 281 | if c == 2 then s = s.." index" elseif c == 3 then s = s.." check" end | 281 | if c == 1 then s = s.." none" |
| 282 | elseif c == 2 then s = s.." index" | ||
| 283 | elseif c == 3 then s = s.." check" end | ||
| 282 | t[mode] = s | 284 | t[mode] = s |
| 283 | return s | 285 | return s |
| 284 | end}), | 286 | end}), |
