[AArch64] Shift right pattern fix

gcc/

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

From-SVN: r207531
This commit is contained in:
Alex Velenko 2014-02-06 09:27:57 +00:00 committed by James Greenhalgh
parent 78b1469d8b
commit 179d29415e
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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>
Jakub Jelinek <jakub@redhat.com>

View File

@ -689,7 +689,7 @@
(define_expand "aarch64_ashr_simddi"
[(match_operand:DI 0 "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"
{
if (INTVAL (operands[2]) == 64)