mirror of
https://github.com/LuaJIT/LuaJIT.git
synced 2025-02-08 07:34:07 +00:00
Fix genlibbc.
This commit is contained in:
parent
41f3ae26d9
commit
b8abb4b91d
@ -66,7 +66,7 @@ local function read_uleb128(p)
|
|||||||
local sh = 7; v = v - 128
|
local sh = 7; v = v - 128
|
||||||
repeat
|
repeat
|
||||||
local r = p[0]
|
local r = p[0]
|
||||||
v = v + bit.lshift(bit.band(r, 128), sh)
|
v = v + bit.lshift(bit.band(r, 127), sh)
|
||||||
sh = sh + 7
|
sh = sh + 7
|
||||||
p = p + 1
|
p = p + 1
|
||||||
until r < 128
|
until r < 128
|
||||||
|
Loading…
Reference in New Issue
Block a user