Fix registers type for MODE_TI

gcc/
	* config/i386/i386.c (standard_sse_constant_opcode): Fix
	registers type for 128bit mode.

From-SVN: r255290
This commit is contained in:
Sergey Shalnov 2017-12-01 05:59:33 +00:00 committed by Kirill Yukhin
parent 6ae3512c0e
commit b7f47ecdde
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2017-12-01 Sergey Shalnov <Sergey.Shalnov@intel.com>
* config/i386/i386.c (standard_sse_constant_opcode): Fix
registers type for 128bit mode.
2017-11-30 Jakub Jelinek <jakub@redhat.com>
* spellcheck-tree.c (test_find_closest_identifier): Use ; instead

View File

@ -10403,7 +10403,7 @@ standard_sse_constant_opcode (rtx_insn *insn, rtx x)
: "vpxor\t%x0, %x0, %x0");
case MODE_TI:
return (TARGET_AVX512VL
? "vpxord\t%t0, %t0, %t0"
? "vpxord\t%x0, %x0, %x0"
: "%vpxor\t%0, %d0");
case MODE_V8DF: