DynASM/x86: Add missing escape in pattern.

This commit is contained in:
Mike Pall 2021-07-28 17:13:08 +03:00 committed by Dmitry Stogov
parent e011952576
commit 58040f257c

View file

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