eliminate the "MBBLabel" MCOperand type, and just use a MCSymbol for
[llvm/avr.git] / test / Transforms / ScalarRepl / basictest.ll
bloba43243cabb676c23229154a007cf06aa512ff0eb
1 ; RUN: opt < %s -scalarrepl -mem2reg -S | not grep alloca
3 define i32 @test() {
4         %X = alloca { i32, float }              ; <{ i32, float }*> [#uses=1]
5         %Y = getelementptr { i32, float }* %X, i64 0, i32 0             ; <i32*> [#uses=2]
6         store i32 0, i32* %Y
7         %Z = load i32* %Y               ; <i32> [#uses=1]
8         ret i32 %Z