From: Jan Beulich Date: Tue, 25 Jun 2019 07:27:49 +0000 (+0200) Subject: x86: don't open code is_any_vex_encoding() X-Git-Tag: binutils-2_33~810 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a38d71189b5895bae7bb476aa34d8a7ba75376d6;p=external%2Fbinutils.git x86: don't open code is_any_vex_encoding() --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 2e12363..d2175b6 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,9 @@ 2019-06-25 Jan Beulich + * tc-i386.c (process_suffix): Use is_any_vex_encoding(). + +2019-06-25 Jan Beulich + * testsuite/gas/i386/sse2-16bit.d, testsuite/gas/i386/sse2-16bit.s: New. testsuite/gas/i386/i386.exp: Run new test. diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index 3985756..8263b15 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -6386,9 +6386,7 @@ process_suffix (void) else if (i.suffix != QWORD_MNEM_SUFFIX && !i.tm.opcode_modifier.ignoresize && !i.tm.opcode_modifier.floatmf - && !i.tm.opcode_modifier.vex - && !i.tm.opcode_modifier.vexopcode - && !is_evex_encoding (&i.tm) + && !is_any_vex_encoding (&i.tm) && ((i.suffix == LONG_MNEM_SUFFIX) == (flag_code == CODE_16BIT) || (flag_code == CODE_64BIT && i.tm.opcode_modifier.jumpbyte)))