eliminate the "MBBLabel" MCOperand type, and just use a MCSymbol for
[llvm/avr.git] / test / Transforms / ScalarRepl / union-fp-int.ll
blob0e1cd2307931b712c51c23f905a5a59b2541652d
1 ; RUN: opt < %s -scalarrepl -S | \
2 ; RUN:   not grep alloca
3 ; RUN: opt < %s -scalarrepl -S | \
4 ; RUN:   grep {bitcast.*float.*i32}
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