DynASM/x86: Add missing escape in pattern.

This commit is contained in:
Mike Pall 2021-06-08 22:34:22 +02:00
parent ec5f6a5618
commit 98f95f6918

View File

@ -739,7 +739,7 @@ local function parseoperand(param)
if t.disp then break end if t.disp then break end
-- [reg+xreg...] -- [reg+xreg...]
local xreg, tailx = match(tailr, "^+%s*([@%w_:]+)%s*(.*)$") local xreg, tailx = match(tailr, "^%+%s*([@%w_:]+)%s*(.*)$")
xreg, t.xreg, tp = rtexpr(xreg) xreg, t.xreg, tp = rtexpr(xreg)
if not t.xreg then if not t.xreg then
-- [reg+-expr] -- [reg+-expr]