diff options
author | H. Peter Anvin <hpa@linux.intel.com> | 2010-08-16 13:48:43 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@linux.intel.com> | 2010-08-16 13:48:43 -0700 |
commit | 978c2170fc22224bec916c692c627c88b53b829f (patch) | |
tree | f425d0775e01f23c2390b54d1b12713c7ab8495b /insns.pl | |
parent | 84a9e308c33542e97cae4bd117b1737562f651d2 (diff) | |
download | nasm-978c2170fc22224bec916c692c627c88b53b829f.tar.gz nasm-978c2170fc22224bec916c692c627c88b53b829f.tar.bz2 nasm-978c2170fc22224bec916c692c627c88b53b829f.zip |
vex: change .wx to .wig to match the latest AVX spec
Change the .wx (ignore the W field) to .wig, to match the latest
version of the AVX specification. This is not a functional change,
but just makes instruction patterns a little easier to write.
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'insns.pl')
-rwxr-xr-x | insns.pl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -769,7 +769,7 @@ sub byte_code_compile($$) { $w = 0; } elsif ($oq eq 'w1') { $w = 1; - } elsif ($oq eq 'wx') { + } elsif ($oq eq 'wig') { $w = 2; } elsif ($oq eq 'ww') { $w = 3; |