summaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2009-12-15 16:36:59 +0000
committerH.J. Lu <hjl.tools@gmail.com>2009-12-15 16:36:59 +0000
commite3c58833bf3e173b040ae267d6ee060cee9c4ba5 (patch)
tree59b3eec182828415a0577c1bfdb55428914db681 /gas
parent6414f3fd8b6badcb210002f54e10b49156e4da75 (diff)
downloadbinutils-gdb-e3c58833bf3e173b040ae267d6ee060cee9c4ba5.tar.gz
Define VEX128 and VEX256.
gas/ 2009-12-15 H.J. Lu <hongjiu.lu@intel.com> * config/tc-i386.c (build_vex_prefix): Use VEX256. opcodes/ 2009-12-15 H.J. Lu <hongjiu.lu@intel.com> * i386-opc.h (VEX128): New. (VEX256): Likewise.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog4
-rw-r--r--gas/config/tc-i386.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 330787a5945..1bc25c8bd7c 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,7 @@
+2009-12-15 H.J. Lu <hongjiu.lu@intel.com>
+
+ * config/tc-i386.c (build_vex_prefix): Use VEX256.
+
2009-12-14 Yoshinori Sato <ysato@users.sourceforge.jp>
PR gas/11086
diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c
index efdd8c242d1..1b96a5ff3ba 100644
--- a/gas/config/tc-i386.c
+++ b/gas/config/tc-i386.c
@@ -2701,7 +2701,7 @@ build_vex_prefix (const insn_template *t)
i.tm = t[1];
}
- vector_length = i.tm.opcode_modifier.vex == 2 ? 1 : 0;
+ vector_length = i.tm.opcode_modifier.vex == VEX256 ? 1 : 0;
switch ((i.tm.base_opcode >> 8) & 0xff)
{