blob: 77c7b54b63fffa0ecb950fc655ed94c6b81d39ee [file] [log] [blame]
Chandler Carruth4177e6f2012-07-02 12:47:22 +00001; RUN: opt < %s -scalarrepl -S | grep "alloca %%T"
Chris Lattner06f62302003-10-29 16:24:10 +00002
Chris Lattner585cfb62009-03-01 00:26:51 +00003%T = type { [80 x i8], i32, i32 }
Tanya Lattner68328372008-03-18 04:14:37 +00004declare i32 @.callback_1(i8*)
Chris Lattner06f62302003-10-29 16:24:10 +00005
Tanya Lattner68328372008-03-18 04:14:37 +00006declare void @.iter_2(i32 (i8*)*, i8*)
7
8define i32 @main() {
Chris Lattner1afcace2011-07-09 17:41:24 +00009 %d = alloca %T ; <{ [80 x i8], i32, i32 }*> [#uses=2]
10 %tmp.0 = getelementptr %T* %d, i64 0, i32 2 ; <i32*> [#uses=1]
Tanya Lattner68328372008-03-18 04:14:37 +000011 store i32 0, i32* %tmp.0
Chris Lattner1afcace2011-07-09 17:41:24 +000012 %tmp.1 = getelementptr %T* %d, i64 0, i32 0, i64 0 ; <i8*> [#uses=1]
Tanya Lattner68328372008-03-18 04:14:37 +000013 call void @.iter_2( i32 (i8*)* @.callback_1, i8* %tmp.1 )
14 ret i32 0
Chris Lattner06f62302003-10-29 16:24:10 +000015}
Tanya Lattner68328372008-03-18 04:14:37 +000016