summaryrefslogtreecommitdiff
path: root/assemble.c
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@linux.intel.com>2010-08-16 13:48:43 -0700
committerH. Peter Anvin <hpa@linux.intel.com>2010-08-16 13:48:43 -0700
commit978c2170fc22224bec916c692c627c88b53b829f (patch)
treef425d0775e01f23c2390b54d1b12713c7ab8495b /assemble.c
parent84a9e308c33542e97cae4bd117b1737562f651d2 (diff)
downloadnasm-978c2170fc22224bec916c692c627c88b53b829f.tar.gz
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 'assemble.c')
-rw-r--r--assemble.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/assemble.c b/assemble.c
index 39d722d0..76cf4393 100644
--- a/assemble.c
+++ b/assemble.c
@@ -93,10 +93,10 @@
* VEX/XOP prefixes are followed by the sequence:
* \tmm\wlp where mm is the M field; and wlp is:
* 00 0ww lpp
- * [w0] ww = 0 for W = 0
- * [w1] ww = 1 for W = 1
- * [wx] ww = 2 for W don't care (always assembled as 0)
- * [ww] ww = 3 for W used as REX.W
+ * [w0] ww = 0 for W = 0
+ * [w1 ] ww = 1 for W = 1
+ * [wig] ww = 2 for W don't care (always assembled as 0)
+ * [ww] ww = 3 for W used as REX.W
*
* t = 0 for VEX (C4/C5), t = 1 for XOP (8F).
*