x86/Intel: drop pointless suffix setting for "fword ptr"

No floating point insn accepts an "fword ptr" operand, so the "fword"
operand flag checking done by match_mem_size() is already sufficient;
the setting of the suffix has become meaningless anyway with
dc2be329b9 ("i386: Only check suffix in instruction mnemonic").
This commit is contained in:
Jan Beulich 2019-12-09 13:29:14 +01:00
parent 3740438712
commit 4cbda994e6
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2019-12-09 Jan Beulich <jbeulich@suse.com>
* config/tc-i386-intel.c (i386_intel_operand): Don't set suffix
for floating point insns when handling O_fword_ptr.
2019-12-09 Jan Beulich <jbeulich@suse.com>
* config/tc-i386-intel.c (i386_intel_operand): Don't special

View File

@ -676,8 +676,6 @@ i386_intel_operand (char *operand_string, int got_a_float)
add_prefix (DATA_PREFIX_OPCODE);
suffix = LONG_DOUBLE_MNEM_SUFFIX;
}
else
suffix = BYTE_MNEM_SUFFIX; /* so it will cause an error */
break;
case O_qword_ptr: