Fix a serious brain-o. Obviously no-one reviewed my patch :(
[oota-llvm.git] / test / Transforms / ScalarRepl / 2003-10-29-ArrayProblem.ll
1 ; RUN: llvm-as < %s | opt -scalarrepl | llvm-dis | \
2 ; RUN:   grep alloca | grep \{
3
4 declare i32 @.callback_1(i8*)
5
6 declare void @.iter_2(i32 (i8*)*, i8*)
7
8 define i32 @main() {
9         %d = alloca { [80 x i8], i32, i32 }             ; <{ [80 x i8], i32, i32 }*> [#uses=2]
10         %tmp.0 = getelementptr { [80 x i8], i32, i32 }* %d, i64 0, i32 2                ; <i32*> [#uses=1]
11         store i32 0, i32* %tmp.0
12         %tmp.1 = getelementptr { [80 x i8], i32, i32 }* %d, i64 0, i32 0, i64 0         ; <i8*> [#uses=1]
13         call void @.iter_2( i32 (i8*)* @.callback_1, i8* %tmp.1 )
14         ret i32 0
15 }
16