summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Johnson <peter@tortall.net>2013-06-01 09:40:34 -0700
committerPeter Johnson <peter@tortall.net>2013-06-21 10:03:05 -0700
commit31c99f1fb24a893e0bd7778ba165a779474246b5 (patch)
tree0516adb52dbcf487cbc96c1b93ce2ee39f89d6a5
parent607feba6d98bf549513e4eaa21445328f9c2b834 (diff)
downloadyasm-31c99f1fb24a893e0bd7778ba165a779474246b5.tar.gz
Fix vpbroadcastq.
Patch by: Jason Garrett-Glaser <jason@x264.com>
-rwxr-xr-xmodules/arch/x86/gen_x86_insn.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/arch/x86/gen_x86_insn.py b/modules/arch/x86/gen_x86_insn.py
index 7524d78d..ceed1840 100755
--- a/modules/arch/x86/gen_x86_insn.py
+++ b/modules/arch/x86/gen_x86_insn.py
@@ -6943,7 +6943,7 @@ for sz in [128, 256]:
prefix=0x66,
opcode=[0x0F, 0x38, 0x59],
operands=[Operand(type="SIMDReg", size=sz, dest="Spare"),
- Operand(type="RM", size=64, relaxed=True, dest="EA")])
+ Operand(type="SIMDRM", size=64, relaxed=True, dest="EA")])
add_insn("vpbroadcastq", "vpbroadcastq_avx2")