diff options
author | Mike Pall <mike> | 2021-07-19 16:07:23 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2021-07-19 16:07:23 +0200 |
commit | 76fbf0397c654b770b00e5dc489109d39818ab36 (patch) | |
tree | 908bd838267ff6f05c91864a5152f3cc930e9957 /src/jit | |
parent | e957737650e060d5bf1c2909b741cc3dffe073ac (diff) | |
parent | 44bd7437a27e0d19bcf878c20ad27a673f17f40b (diff) | |
download | luajit-76fbf0397c654b770b00e5dc489109d39818ab36.tar.gz luajit-76fbf0397c654b770b00e5dc489109d39818ab36.tar.bz2 luajit-76fbf0397c654b770b00e5dc489109d39818ab36.zip |
Merge branch 'master' into v2.1
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 4800a6b8..abd72287 100644 --- a/src/jit/dump.lua +++ b/src/jit/dump.lua | |||
@@ -277,7 +277,7 @@ local litname = { | |||
277 | local s = irtype[band(mode, 31)] | 277 | local s = irtype[band(mode, 31)] |
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, 14) | 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 == 2 then s = s.." index" elseif c == 3 then s = s.." check" end |
282 | t[mode] = s | 282 | t[mode] = s |
283 | return s | 283 | return s |