Commit eebe7d1c by Uros Bizjak Committed by Uros Bizjak

predicates.md (const0_operand): Do not match const_wide_int code.

	* config/i386/predicates.md (const0_operand): Do not match
	const_wide_int code.
	(const1_operand): Ditto.

From-SVN: r235417
parent a7d56fb8
2016-04-25 Uros Bizjak <ubizjak@gmail.com>
* config/i386/predicates.md (const0_operand): Do not match
const_wide_int code.
(const1_operand): Ditto.
2016-04-25 Uros Bizjak <ubizjak@gmail.com>
* config/i386/i386.md (*movoi_internal_avx): Set mode attribute to XI
for SSE constm1 operands and TARGET_AVX512VL.
(*movti_internal): Ditto.
......
......@@ -659,7 +659,7 @@
;; Match exactly zero.
(define_predicate "const0_operand"
(match_code "const_int,const_wide_int,const_double,const_vector")
(match_code "const_int,const_double,const_vector")
{
if (mode == VOIDmode)
mode = GET_MODE (op);
......@@ -668,7 +668,7 @@
;; Match one or a vector with all elements equal to one.
(define_predicate "const1_operand"
(match_code "const_int,const_wide_int,const_double,const_vector")
(match_code "const_int,const_double,const_vector")
{
if (mode == VOIDmode)
mode = GET_MODE (op);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment