From 58af1fbbe93fa73601da600cef8dd811c7345ee3 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Wed, 18 Feb 2009 14:04:02 -0800 Subject: [PATCH] insns.pl: handle the new VEX.DDS flag per AVX spec version 5 The AVX spec version 5 introduces the new VEX.DDS flag; support it. --- insns.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/insns.pl b/insns.pl index ac03ae3b..70942799 100755 --- a/insns.pl +++ b/insns.pl @@ -676,7 +676,7 @@ sub byte_code_compile($) { $m = 3; } elsif ($oq =~ /^m([0-9]+)$/) { $m = $1+0; - } elsif ($oq eq 'nds' || $oq eq 'ndd') { + } elsif ($oq eq 'nds' || $oq eq 'ndd' || $oq eq 'dds') { if (!defined($oppos{'v'})) { die "$fname: $line: vex.$oq without 'v' operand\n"; } -- 2.11.4.GIT