mirror of
https://github.com/php/php-src.git
synced 2025-08-17 14:38:49 +02:00
DynASM/x86: Add missing escape in pattern.
This commit is contained in:
parent
e011952576
commit
58040f257c
1 changed files with 1 additions and 1 deletions
|
@ -832,7 +832,7 @@ local function parseoperand(param, isqword)
|
||||||
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]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue