blob: d0c303d71914c17baa7fa5d6d22db61944e0b7b3 [file] [log] [blame]
Tanya Lattner9bc243b2008-03-01 07:38:40 +00001; RUN: llvm-as < %s | llvm-dis > %t1.ll
Chris Lattner5e1b72c2006-01-10 20:00:20 +00002; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
3; RUN: diff %t1.ll %t2.ll
4
Tanya Lattner9bc243b2008-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
Robert Bocchinof90a87a2006-01-17 20:07:30 +00008}
9
Tanya Lattner9bc243b2008-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
Chris Lattner5e1b72c2006-01-10 20:00:20 +000013}
Chris Lattnerf40210d2006-04-08 01:17:42 +000014
Tanya Lattner9bc243b2008-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
Chris Lattnerf40210d2006-04-08 01:17:42 +000018}
19
Tanya Lattner9bc243b2008-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]
Chris Lattnerf40210d2006-04-08 01:17:42 +000022 ret <4 x float> %R
23}
Tanya Lattner9bc243b2008-03-01 07:38:40 +000024