From 2bf05e57303ade685e40991a7779de56ced5d46f Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Thu, 24 Sep 2009 16:37:09 +0000 Subject: gas/ 2009-09-24 H.J. Lu * config/tc-i386.c (build_vex_prefix): Check vex == 2 instead of vex256. opcodes/ 2009-09-24 H.J. Lu * i386-gen.c (opcode_modifiers): Remove Vex256. (set_bitfield): Handle XXX=V. * i386-opc.h (Vex): Update comments. (Vex256): Removed. (VexNDS): Updated. (i386_opcode_modifier): Change vex to 2 bits. Remove vex256. * i386-opc.tbl: Replace "Vex|Vex256" with Vex=2. * i386-tbl.h: Regenerated. --- gas/ChangeLog | 5 +++++ gas/config/tc-i386.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'gas') diff --git a/gas/ChangeLog b/gas/ChangeLog index 53f8a43..55cab08 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,10 @@ 2009-09-24 H.J. Lu + * config/tc-i386.c (build_vex_prefix): Check vex == 2 instead + of vex256. + +2009-09-24 H.J. Lu + PR gas/10677 * config/tc-i386.h (TC_FORCE_RELOCATION_LOCAL): Return true for BFD_RELOC_X86_64_GOTPCREL. diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index 3b9b361..4beeccc 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -2678,7 +2678,7 @@ build_vex_prefix (const insn_template *t) i.tm = t[1]; } - vector_length = i.tm.opcode_modifier.vex256 ? 1 : 0; + vector_length = i.tm.opcode_modifier.vex == 2 ? 1 : 0; switch ((i.tm.base_opcode >> 8) & 0xff) { -- cgit v1.1