diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2009-08-07 22:36:50 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2009-08-07 22:36:50 +0000 |
commit | 23b28cb82437ae2d69c71d4e0666cec09ef23cbf (patch) | |
tree | 4a0c37412a3fa5f7aa533010d5b0801189251961 /llvm/test/CodeGen/ARM/vdup.ll | |
parent | fb93be2b6f1bb883705b8c2c835c92583fb4952d (diff) | |
download | bcm5719-llvm-23b28cb82437ae2d69c71d4e0666cec09ef23cbf.tar.gz bcm5719-llvm-23b28cb82437ae2d69c71d4e0666cec09ef23cbf.zip |
2 more vdup.32 cases
llvm-svn: 78419
Diffstat (limited to 'llvm/test/CodeGen/ARM/vdup.ll')
-rw-r--r-- | llvm/test/CodeGen/ARM/vdup.ll | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/ARM/vdup.ll b/llvm/test/CodeGen/ARM/vdup.ll index 1c0887a2492..37f8dcbaf5a 100644 --- a/llvm/test/CodeGen/ARM/vdup.ll +++ b/llvm/test/CodeGen/ARM/vdup.ll @@ -1,7 +1,7 @@ ; RUN: llvm-as < %s | llc -march=arm -mattr=+neon > %t ; RUN: grep vdup.8 %t | count 4 ; RUN: grep vdup.16 %t | count 4 -; RUN: grep vdup.32 %t | count 8 +; RUN: grep vdup.32 %t | count 10 define <8 x i8> @v_dup8(i8 %A) nounwind { %tmp1 = insertelement <8 x i8> zeroinitializer, i8 %A, i32 0 @@ -132,3 +132,17 @@ define <4 x float> @v_shuffledupQfloat(float %A) nounwind { %tmp2 = shufflevector <4 x float> %tmp1, <4 x float> undef, <4 x i32> zeroinitializer ret <4 x float> %tmp2 } + +define <2 x float> @v_shuffledupfloat2(float* %A) nounwind { + %tmp0 = load float* %A + %tmp1 = insertelement <2 x float> undef, float %tmp0, i32 0 + %tmp2 = shufflevector <2 x float> %tmp1, <2 x float> undef, <2 x i32> zeroinitializer + ret <2 x float> %tmp2 +} + +define <4 x float> @v_shuffledupQfloat2(float* %A) nounwind { + %tmp0 = load float* %A + %tmp1 = insertelement <4 x float> undef, float %tmp0, i32 0 + %tmp2 = shufflevector <4 x float> %tmp1, <4 x float> undef, <4 x i32> zeroinitializer + ret <4 x float> %tmp2 +} |