Add and use DominatorTreeBase::findNearestCommonDominator().
[llvm-complete.git] / test / Feature / cfgstructures.ll
blobb16af47af1c427989a51bb2aa7b523a193e8bf15
1 ; RUN: llvm-upgrade < %s | llvm-as | llvm-dis > %t1.ll
2 ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
3 ; RUN: diff %t1.ll %t2.ll
5 implementation
7 ;; This is an irreducible flow graph
10 void "irreducible"(bool %cond)
11 begin
12         br bool %cond, label %X, label %Y
15         br label %Y
17         br label %X
18 end
20 ;; This is a pair of loops that share the same header
22 void "sharedheader"(bool %cond)
23 begin
24         br label %A
26         br bool %cond, label %X, label %Y
29         br label %A
31         br label %A
32 end
34 ;; This is a simple nested loop
35 void "nested"(bool %cond1, bool %cond2, bool %cond3)
36 begin
37         br label %Loop1
39 Loop1:
40         br label %Loop2
42 Loop2:
43         br label %Loop3
45 Loop3:
46         br bool %cond3, label %Loop3, label %L3Exit
48 L3Exit:
49         br bool %cond2, label %Loop2, label %L2Exit
51 L2Exit:
52         br bool %cond1, label %Loop1, label %L1Exit
54 L1Exit:
55         ret void
56 end