DynASM/x86: Add missing escape in pattern.
This commit is contained in:
@@ -739,7 +739,7 @@ local function parseoperand(param)
|
||||
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]
|
||||
|
||||
Reference in New Issue
Block a user