Browse Source

Merge branch 'master' into v2.1

Mike Pall 4 years ago
parent
commit
c1c4c5599c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dynasm/dasm_x86.lua

+ 1 - 1
dynasm/dasm_x86.lua

@@ -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]