Remove explicit control flow through the use of the 'not' script
[oota-llvm.git] / test / Transforms / ScalarRepl / 2003-05-30-MultiLevel.ll
1 ; RUN: as < %s | opt -scalarrepl
2
3 int %test() {
4   %X = alloca { [ 4 x int] }
5   %Y = getelementptr { [ 4 x int] }* %X, long 0, ubyte 0, long 2
6   store int 4, int* %Y
7   %Z = load int* %Y
8   ret int %Z
9 }