blob: d0c303d71914c17baa7fa5d6d22db61944e0b7b3 [file] [log] [blame]
Tanya Lattnerfc887452008-03-01 07:38:40 +00001; RUN: llvm-as < %s | llvm-dis > %t1.ll
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
3; RUN: diff %t1.ll %t2.ll
4
Tanya Lattnerfc887452008-03-01 07:38:40 +00005define i32 @test_extractelement(<4 x i32> %V) {
6 %R = extractelement <4 x i32> %V, i32 1 ; <i32> [#uses=1]
7 ret i32 %R
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008}
9
Tanya Lattnerfc887452008-03-01 07:38:40 +000010define <4 x i32> @test_insertelement(<4 x i32> %V) {
11 %R = insertelement <4 x i32> %V, i32 0, i32 0 ; <<4 x i32>> [#uses=1]
12 ret <4 x i32> %R
Dan Gohmanf17a25c2007-07-18 16:29:46 +000013}
14
Tanya Lattnerfc887452008-03-01 07:38:40 +000015define <4 x i32> @test_shufflevector_u(<4 x i32> %V) {
16 %R = shufflevector <4 x i32> %V, <4 x i32> %V, <4 x i32> < i32 1, i32 undef, i32 7, i32 2 > ; <<4 x i32>> [#uses=1]
17 ret <4 x i32> %R
Dan Gohmanf17a25c2007-07-18 16:29:46 +000018}
19
Tanya Lattnerfc887452008-03-01 07:38:40 +000020define <4 x float> @test_shufflevector_f(<4 x float> %V) {
21 %R = shufflevector <4 x float> %V, <4 x float> undef, <4 x i32> < i32 1, i32 undef, i32 7, i32 2 > ; <<4 x float>> [#uses=1]
Dan Gohmanf17a25c2007-07-18 16:29:46 +000022 ret <4 x float> %R
23}
Tanya Lattnerfc887452008-03-01 07:38:40 +000024