Add encoding for VSTR.
[oota-llvm.git] / test / Transforms / DeadStoreElimination / 2004-11-28-LiveStoreDeleted.ll
1 ; RUN: opt < %s -dse -scalarrepl -instcombine | \
2 ; RUN:   llvm-dis | not grep {ret i32 undef}
3
4 define i32 @test(double %__x) {
5         %__u = alloca { [3 x i32] }             ; <{ [3 x i32] }*> [#uses=2]
6         %tmp.1 = bitcast { [3 x i32] }* %__u to double*         ; <double*> [#uses=1]
7         store double %__x, double* %tmp.1
8         %tmp.4 = getelementptr { [3 x i32] }* %__u, i32 0, i32 0, i32 1         ; <i32*> [#uses=1]
9         %tmp.5 = load i32* %tmp.4               ; <i32> [#uses=1]
10         %tmp.6 = icmp slt i32 %tmp.5, 0         ; <i1> [#uses=1]
11         %tmp.7 = zext i1 %tmp.6 to i32          ; <i32> [#uses=1]
12         ret i32 %tmp.7
13 }
14