Fix Neon ICE.

2009-08-24  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>

        * config/arm/neon.md (vashl<mode>3): Rename from ashl<mode>3.
        (vashr<mode>3): Rename from ashr<mode>3.
        (vlshr<mode>3): Rename from lshr<mode>3.

From-SVN: r151048
This commit is contained in:
Ramana Radhakrishnan 2009-08-24 08:52:50 +00:00 committed by Ramana Radhakrishnan
parent b241b4757b
commit d44463a93d
2 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2009-08-24 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
* config/arm/neon.md (vashl<mode>3): Rename from ashl<mode>3.
(vashr<mode>3): Rename from ashr<mode>3.
(vlshr<mode>3): Rename from lshr<mode>3.
2009-08-24 Kai Tietz <kai.tietz@onevision.com>
PR/40786

View File

@ -1118,7 +1118,7 @@
; generic vectorizer code. It ends up creating a V2DI constructor with
; SImode elements.
(define_insn "ashl<mode>3"
(define_insn "vashl<mode>3"
[(set (match_operand:VDQIW 0 "s_register_operand" "=w")
(ashift:VDQIW (match_operand:VDQIW 1 "s_register_operand" "w")
(match_operand:VDQIW 2 "s_register_operand" "w")))]
@ -1164,7 +1164,7 @@
(const_string "neon_shift_3")))]
)
(define_expand "ashr<mode>3"
(define_expand "vashr<mode>3"
[(set (match_operand:VDQIW 0 "s_register_operand" "")
(ashiftrt:VDQIW (match_operand:VDQIW 1 "s_register_operand" "")
(match_operand:VDQIW 2 "s_register_operand" "")))]
@ -1178,7 +1178,7 @@
DONE;
})
(define_expand "lshr<mode>3"
(define_expand "vlshr<mode>3"
[(set (match_operand:VDQIW 0 "s_register_operand" "")
(lshiftrt:VDQIW (match_operand:VDQIW 1 "s_register_operand" "")
(match_operand:VDQIW 2 "s_register_operand" "")))]