Commit 59401c60 by Jakub Jelinek Committed by Jakub Jelinek

sse.md (*avx_cvtpd2dq256_2, [...]): Use v constraint instead of x.

	* config/i386/sse.md (*avx_cvtpd2dq256_2, *avx_cvtps2pd256_2): Use
	v constraint instead of x.

From-SVN: r235965
parent 3433ee35
2016-05-06 Jakub Jelinek <jakub@redhat.com>
* config/i386/sse.md (*avx_cvtpd2dq256_2, *avx_cvtps2pd256_2): Use
v constraint instead of x.
2016-05-06 Nathan Sidwell <nathan@codesourcery.com> 2016-05-06 Nathan Sidwell <nathan@codesourcery.com>
* gimple.c (gimple_call_same_target_p): Unique functions are eq. * gimple.c (gimple_call_same_target_p): Unique functions are eq.
......
...@@ -4735,9 +4735,9 @@ ...@@ -4735,9 +4735,9 @@
"operands[2] = CONST0_RTX (V4SImode);") "operands[2] = CONST0_RTX (V4SImode);")
(define_insn "*avx_cvtpd2dq256_2" (define_insn "*avx_cvtpd2dq256_2"
[(set (match_operand:V8SI 0 "register_operand" "=x") [(set (match_operand:V8SI 0 "register_operand" "=v")
(vec_concat:V8SI (vec_concat:V8SI
(unspec:V4SI [(match_operand:V4DF 1 "nonimmediate_operand" "xm")] (unspec:V4SI [(match_operand:V4DF 1 "nonimmediate_operand" "vm")]
UNSPEC_FIX_NOTRUNC) UNSPEC_FIX_NOTRUNC)
(match_operand:V4SI 2 "const0_operand")))] (match_operand:V4SI 2 "const0_operand")))]
"TARGET_AVX" "TARGET_AVX"
...@@ -5050,10 +5050,10 @@ ...@@ -5050,10 +5050,10 @@
(set_attr "mode" "<MODE>")]) (set_attr "mode" "<MODE>")])
(define_insn "*avx_cvtps2pd256_2" (define_insn "*avx_cvtps2pd256_2"
[(set (match_operand:V4DF 0 "register_operand" "=x") [(set (match_operand:V4DF 0 "register_operand" "=v")
(float_extend:V4DF (float_extend:V4DF
(vec_select:V4SF (vec_select:V4SF
(match_operand:V8SF 1 "nonimmediate_operand" "xm") (match_operand:V8SF 1 "nonimmediate_operand" "vm")
(parallel [(const_int 0) (const_int 1) (parallel [(const_int 0) (const_int 1)
(const_int 2) (const_int 3)]))))] (const_int 2) (const_int 3)]))))]
"TARGET_AVX" "TARGET_AVX"
......
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