OSDN Git Service

Simplify and generalize the SROA "convert to scalar" transformation to
[android-x86/external-llvm.git] / test / Transforms / ScalarRepl / 2006-11-07-InvalidArrayPromote.ll
1 ; RUN: llvm-as < %s | opt -scalarrepl | llvm-dis | not grep alloca
2
3 define i32 @func(<4 x float> %v0, <4 x float> %v1) nounwind {
4         %vsiidx = alloca [2 x <4 x i32>], align 16              ; <[2 x <4 x i32>]*> [#uses=3]
5         %tmp = call <4 x i32> @llvm.x86.sse2.cvttps2dq( <4 x float> %v0 )               ; <<4 x i32>> [#uses=2]
6         %tmp.upgrd.1 = bitcast <4 x i32> %tmp to <2 x i64>              ; <<2 x i64>> [#uses=0]
7         %tmp.upgrd.2 = getelementptr [2 x <4 x i32>]* %vsiidx, i32 0, i32 0             ; <<4 x i32>*> [#uses=1]
8         store <4 x i32> %tmp, <4 x i32>* %tmp.upgrd.2
9         %tmp10 = call <4 x i32> @llvm.x86.sse2.cvttps2dq( <4 x float> %v1 )             ; <<4 x i32>> [#uses=2]
10         %tmp10.upgrd.3 = bitcast <4 x i32> %tmp10 to <2 x i64>          ; <<2 x i64>> [#uses=0]
11         %tmp14 = getelementptr [2 x <4 x i32>]* %vsiidx, i32 0, i32 1           ; <<4 x i32>*> [#uses=1]
12         store <4 x i32> %tmp10, <4 x i32>* %tmp14
13         %tmp15 = getelementptr [2 x <4 x i32>]* %vsiidx, i32 0, i32 0, i32 4            ; <i32*> [#uses=1]
14         %tmp.upgrd.4 = load i32* %tmp15         ; <i32> [#uses=1]
15         ret i32 %tmp.upgrd.4
16 }
17
18 declare <4 x i32> @llvm.x86.sse2.cvttps2dq(<4 x float>)
19