Teach lib/VMCore/ConstantFold.cpp how to set the inbounds keyword and
[oota-llvm.git] / test / Transforms / ScalarRepl / union-fp-int.ll
1 ; RUN: opt %s -scalarrepl -S | \
2 ; RUN:   not grep alloca
3 ; RUN: opt %s -scalarrepl -S | \
4 ; RUN:   grep {bitcast.*float.*i32}
5
6 define i32 @test(float %X) {
7         %X_addr = alloca float          ; <float*> [#uses=2]
8         store float %X, float* %X_addr
9         %X_addr.upgrd.1 = bitcast float* %X_addr to i32*                ; <i32*> [#uses=1]
10         %tmp = load i32* %X_addr.upgrd.1                ; <i32> [#uses=1]
11         ret i32 %tmp
12 }
13