Browse Source

DynASM/x86: Fix BMI instructions.

Thanks to Peter Cawley.
Mike Pall 5 years ago
parent
commit
9749952b55
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dynasm/dasm_x86.lua

+ 1 - 1
dynasm/dasm_x86.lua

@@ -1852,7 +1852,7 @@ end
 
 ------------------------------------------------------------------------------
 
-local map_vexarg = { u = false, v = 1, V = 2 }
+local map_vexarg = { u = false, v = 1, V = 2, w = 3 }
 
 -- Process pattern string.
 local function dopattern(pat, args, sz, op, needrex)