blob: 24e6a3195f13145af6d8ee92b54658274f0bb706 [file] [log] [blame]
Dan Gohman3c7d3082009-09-11 18:01:28 +00001; RUN: opt < %s -scalarrepl -S | grep {alloca %T}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
Chris Lattner69b70232009-03-01 00:26:51 +00003%T = type { [80 x i8], i32, i32 }
Tanya Lattner307f46e2008-03-18 04:14:37 +00004declare i32 @.callback_1(i8*)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005
Tanya Lattner307f46e2008-03-18 04:14:37 +00006declare void @.iter_2(i32 (i8*)*, i8*)
7
8define 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
Dan Gohmanf17a25c2007-07-18 16:29:46 +000015}
Tanya Lattner307f46e2008-03-18 04:14:37 +000016