Skip to content

Commit 58040f2

Browse files
Mike Palldstogov
authored andcommitted
DynASM/x86: Add missing escape in pattern.
1 parent e011952 commit 58040f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/jit/dynasm/dasm_x86.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -832,7 +832,7 @@ local function parseoperand(param, isqword)
832832
if t.disp then break end
833833

834834
-- [reg+xreg...]
835-
local xreg, tailx = match(tailr, "^+%s*([@%w_:]+)%s*(.*)$")
835+
local xreg, tailx = match(tailr, "^%+%s*([@%w_:]+)%s*(.*)$")
836836
xreg, t.xreg, tp = rtexpr(xreg)
837837
if not t.xreg then
838838
-- [reg+-expr]

0 commit comments

Comments
 (0)