mirror of
https://github.com/LuaJIT/LuaJIT.git
synced 2025-02-08 15:34:09 +00:00
[luacheck] fix (W311) value assigned to variable b is unused
This commit is contained in:
parent
c1e99c32aa
commit
4350a1f4a1
@ -818,7 +818,7 @@ map_act = {
|
|||||||
m = b%32; b = (b-m)/32
|
m = b%32; b = (b-m)/32
|
||||||
local nb = b%2; b = (b-nb)/2
|
local nb = b%2; b = (b-nb)/2
|
||||||
if nb == 0 then ctx.rexb = true end
|
if nb == 0 then ctx.rexb = true end
|
||||||
local nx = b%2; b = (b-nx)/2
|
local nx = b%2
|
||||||
if nx == 0 then ctx.rexx = true end
|
if nx == 0 then ctx.rexx = true end
|
||||||
b = byte(ctx.code, pos, pos)
|
b = byte(ctx.code, pos, pos)
|
||||||
if not b then return incomplete(ctx) end
|
if not b then return incomplete(ctx) end
|
||||||
|
Loading…
Reference in New Issue
Block a user