mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +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
|
||||
|
||||
-- [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]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue