mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
ea6c9c17f5
llvm-svn: 86494
24 lines
902 B
LLVM
24 lines
902 B
LLVM
; RUN: llc < %s -march=arm -mattr=+neon | grep vldmia | count 4
|
|
; RUN: llc < %s -march=arm -mattr=+neon | grep vstmia | count 1
|
|
; RUN: llc < %s -march=arm -mattr=+neon | grep vmov | count 2
|
|
|
|
define void @t1(<4 x i32>* %r, <2 x i64>* %a, <2 x i64>* %b) nounwind {
|
|
entry:
|
|
%0 = load <2 x i64>* %a, align 16 ; <<2 x i64>> [#uses=1]
|
|
%1 = load <2 x i64>* %b, align 16 ; <<2 x i64>> [#uses=1]
|
|
%2 = add <2 x i64> %0, %1 ; <<2 x i64>> [#uses=1]
|
|
%3 = bitcast <2 x i64> %2 to <4 x i32> ; <<4 x i32>> [#uses=1]
|
|
store <4 x i32> %3, <4 x i32>* %r, align 16
|
|
ret void
|
|
}
|
|
|
|
define <4 x i32> @t2(<2 x i64>* %a, <2 x i64>* %b) nounwind readonly {
|
|
entry:
|
|
%0 = load <2 x i64>* %a, align 16 ; <<2 x i64>> [#uses=1]
|
|
%1 = load <2 x i64>* %b, align 16 ; <<2 x i64>> [#uses=1]
|
|
%2 = sub <2 x i64> %0, %1 ; <<2 x i64>> [#uses=1]
|
|
%3 = bitcast <2 x i64> %2 to <4 x i32> ; <<4 x i32>> [#uses=1]
|
|
ret <4 x i32> %3
|
|
}
|
|
|