[InstCombine] Signed saturation patterns
[llvm-core.git] / test / Analysis / RegionInfo / condition_forward_edge.ll
blobcc9a3294e1451c628246ca442db2301594c42ecd
1 ; REQUIRES: asserts
2 ; RUN: opt -regions -analyze < %s | FileCheck %s
3 ; RUN: opt -regions -stats -disable-output < %s 2>&1 | FileCheck -check-prefix=STAT %s
4 ; RUN: opt -regions -print-region-style=bb  -analyze < %s 2>&1 | FileCheck -check-prefix=BBIT %s
5 ; RUN: opt -regions -print-region-style=rn  -analyze < %s 2>&1 | FileCheck -check-prefix=RNIT %s
7 ; RUN: opt < %s -passes='print<regions>' 2>&1 | FileCheck %s
9 define void @normal_condition() nounwind {
10 "0":
11         br label %"1"
12 "1":
13         br i1 1, label %"2", label %"3"
14 "2":
15         br label %"3"
16 "3":
17         ret void
19 ; CHECK-NOT: =>
20 ; CHECK: [0] 0 => <Function Return>
21 ; CHECK: [1] 1 => 3
23 ; STAT: 2 region - The # of regions
25 ; BBIT: 0, 1, 2, 3,
26 ; BBIT: 1, 2,
28 ; RNIT: 0, 1 => 3, 3,
29 ; RNIT: 1, 2,