669b0a4e1b7a6b5b309b6a7e277a615acb0cc311
[oota-llvm.git] / test / Transforms / DSAnalysis / recursion.ll
1 implementation   ; Functions:
2
3 declare void %__main()
4
5 void %A(int* %L) {
6 bb0:            ; No predecessors!
7         call void %B( int* %L )
8         call void %A( int* %L )
9         ret void
10 }
11
12 void %B(int* %L) {
13 bb0:            ; No predecessors!
14         call void %A( int* %L )
15         ret void
16 }
17
18 void %main() {
19 bb0:            ; No predecessors!
20         call void %__main( )
21         call void %A( int* null )
22         ret void
23 }
24