diff options
-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 052c4c38..a8e25ed3 100644 --- a/dynasm/dasm_x86.lua +++ b/dynasm/dasm_x86.lua | |||
@@ -1916,7 +1916,7 @@ map_op[".template__"] = function(params, template, nparams) | |||
1916 | if matchtm(tm, args) then | 1916 | if matchtm(tm, args) then |
1917 | local prefix = sub(szm, 1, 1) | 1917 | local prefix = sub(szm, 1, 1) |
1918 | if prefix == "/" then -- Exactly match leading operand sizes. | 1918 | if prefix == "/" then -- Exactly match leading operand sizes. |
1919 | for i = #szm, 1, -1 do | 1919 | for i = #szm,1,-1 do |
1920 | if i == 1 then | 1920 | if i == 1 then |
1921 | dopattern(pat, args, sz, params.op, needrex) -- Process pattern. | 1921 | dopattern(pat, args, sz, params.op, needrex) -- Process pattern. |
1922 | return | 1922 | return |