use a more efficient check for 'is metadata'
[llvm/stm8.git] / test / Analysis / RegionInfo / condition_same_exit.ll
blob1b88596c0f8c497398088ed61b97b1d0440c5c8b
1 ; RUN: opt -regions -analyze < %s | FileCheck %s
2 ; RUN: opt -regions -stats < %s |& FileCheck -check-prefix=STAT %s
3 ; RUN: opt -regions -print-region-style=bb  -analyze < %s |& FileCheck -check-prefix=BBIT %s
4 ; RUN: opt -regions -print-region-style=rn  -analyze < %s |& FileCheck -check-prefix=RNIT %s
6 define void @normal_condition() nounwind {
7 0:
8         br i1 1, label %"1", label %"4"
11         br i1 1, label %"2", label %"3"
13         br label %"4"
15         br label %"4"
17         ret void
19 ; CHECK-NOT: =>
20 ; CHECK: [0] 0 => <Function Return>
21 ; CHECK-NEXT: [1] 0 => 4
22 ; CHECK-NEXT:   [2] 1 => 4
23 ; STAT: 3 region - The # of regions
25 ; BBIT: 0, 1, 2, 4, 3,
26 ; BBIT: 0, 1, 2, 3,
27 ; BBIT: 1, 2, 3,
29 ; RNIT: 0 => 4, 4,
30 ; RNIT: 0, 1 => 4,
31 ; RNIT: 1, 2, 3,