Commit 179d2941 by Alex Velenko Committed by James Greenhalgh

[AArch64] Shift right pattern fix

gcc/

	* config/aarch64/aarch64-simd.md
	(aarch64_ashr_simddi): Change QI to SI.

From-SVN: r207531
parent 78b1469d
2014-02-06 Alex Velenko <Alex.Velenko@arm.com>
* config/aarch64/aarch64-simd.md
(aarch64_ashr_simddi): Change QI to SI.
2014-02-05 Jan Hubicka <hubicka@ucw.cz> 2014-02-05 Jan Hubicka <hubicka@ucw.cz>
Jakub Jelinek <jakub@redhat.com> Jakub Jelinek <jakub@redhat.com>
......
...@@ -689,7 +689,7 @@ ...@@ -689,7 +689,7 @@
(define_expand "aarch64_ashr_simddi" (define_expand "aarch64_ashr_simddi"
[(match_operand:DI 0 "register_operand" "=w") [(match_operand:DI 0 "register_operand" "=w")
(match_operand:DI 1 "register_operand" "w") (match_operand:DI 1 "register_operand" "w")
(match_operand:QI 2 "aarch64_shift_imm64_di" "")] (match_operand:SI 2 "aarch64_shift_imm64_di" "")]
"TARGET_SIMD" "TARGET_SIMD"
{ {
if (INTVAL (operands[2]) == 64) if (INTVAL (operands[2]) == 64)
......
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