diff options
author | Mike Pall <mike> | 2021-06-08 22:34:22 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2021-06-08 22:34:22 +0200 |
commit | 98f95f69180d48ce49289d6428b46a9ccdd67a46 (patch) | |
tree | 996e81192cad669d8547331ac255482ea6a229f1 | |
parent | ec5f6a5618999d0add9e42bf788237417e5d43f4 (diff) | |
download | luajit-98f95f69180d48ce49289d6428b46a9ccdd67a46.tar.gz luajit-98f95f69180d48ce49289d6428b46a9ccdd67a46.tar.bz2 luajit-98f95f69180d48ce49289d6428b46a9ccdd67a46.zip |
DynASM/x86: Add missing escape in pattern.
-rw-r--r-- | dynasm/dasm_x86.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dynasm/dasm_x86.lua b/dynasm/dasm_x86.lua index c08e980a..c37d6a40 100644 --- a/dynasm/dasm_x86.lua +++ b/dynasm/dasm_x86.lua | |||
@@ -739,7 +739,7 @@ local function parseoperand(param) | |||
739 | if t.disp then break end | 739 | if t.disp then break end |
740 | 740 | ||
741 | -- [reg+xreg...] | 741 | -- [reg+xreg...] |
742 | local xreg, tailx = match(tailr, "^+%s*([@%w_:]+)%s*(.*)$") | 742 | local xreg, tailx = match(tailr, "^%+%s*([@%w_:]+)%s*(.*)$") |
743 | xreg, t.xreg, tp = rtexpr(xreg) | 743 | xreg, t.xreg, tp = rtexpr(xreg) |
744 | if not t.xreg then | 744 | if not t.xreg then |
745 | -- [reg+-expr] | 745 | -- [reg+-expr] |