1 ; RUN: opt < %s -simplifycfg -S > %t
2 ; RUN: not grep "^BB.tomerge" %t
3 ; RUN: grep "^BB.nomerge" %t | count 4
10 ; This function can't be merged
15 BB.nomerge: ; preds = %Common, %entry
16 ; This phi has a conflicting value (0) with below phi (2), so blocks
18 %a = phi i32 [ 1, %entry ], [ 0, %Common ] ; <i32> [#uses=1]
21 Succ: ; preds = %Common, %BB.nomerge
22 %b = phi i32 [ %a, %BB.nomerge ], [ 2, %Common ] ; <i32> [#uses=0]
23 %conde = call i1 @foo( ) ; <i1> [#uses=1]
24 br i1 %conde, label %Common, label %Exit
26 Common: ; preds = %Succ
27 %cond = call i1 @foo( ) ; <i1> [#uses=1]
28 br i1 %cond, label %BB.nomerge, label %Succ
34 ; This function can't be merged
39 BB.nomerge: ; preds = %Common, %entry
42 Succ: ; preds = %Common, %BB.nomerge
43 ; This phi has confliction values for Common and (through BB) Common,
44 ; blocks can't be merged
45 %b = phi i32 [ 1, %BB.nomerge ], [ 2, %Common ] ; <i32> [#uses=0]
46 %conde = call i1 @foo( ) ; <i1> [#uses=1]
47 br i1 %conde, label %Common, label %Exit
49 Common: ; preds = %Succ
50 %cond = call i1 @foo( ) ; <i1> [#uses=1]
51 br i1 %cond, label %BB.nomerge, label %Succ
57 ; This function can't be merged (for keeping canonical loop structures)
62 BB.nomerge: ; preds = %Common, %entry
65 Succ: ; preds = %Common, %BB.tomerge, %Pre-Exit
66 ; This phi has identical values for Common and (through BB) Common,
67 ; blocks can't be merged
68 %b = phi i32 [ 1, %BB.nomerge ], [ 1, %Common ], [ 2, %Pre-Exit ]
69 %conde = call i1 @foo( ) ; <i1> [#uses=1]
70 br i1 %conde, label %Common, label %Pre-Exit
72 Common: ; preds = %Succ
73 %cond = call i1 @foo( ) ; <i1> [#uses=1]
74 br i1 %cond, label %BB.nomerge, label %Succ
76 Pre-Exit: ; preds = %Succ
77 ; This adds a backedge, so the %b phi node gets a third branch and is
78 ; not completely trivial
79 %cond2 = call i1 @foo( ) ; <i1> [#uses=1]
80 br i1 %cond2, label %Succ, label %Exit
82 Exit: ; preds = %Pre-Exit
86 ; This function can't be merged (for keeping canonical loop structures)
91 BB.nomerge: ; preds = %Common, %entry
92 ; This phi has a matching value (0) with below phi (0), so blocks
94 %a = phi i32 [ 1, %entry ], [ 0, %Common ] ; <i32> [#uses=1]
97 Succ: ; preds = %Common, %BB.tomerge
98 %b = phi i32 [ %a, %BB.nomerge ], [ 0, %Common ] ; <i32> [#uses=0]
99 %conde = call i1 @foo( ) ; <i1> [#uses=1]
100 br i1 %conde, label %Common, label %Exit
102 Common: ; preds = %Succ
103 %cond = call i1 @foo( ) ; <i1> [#uses=1]
104 br i1 %cond, label %BB.nomerge, label %Succ
106 Exit: ; preds = %Succ
110 ; This function can be merged
115 Succ: ; preds = %Use, %entry
116 ; This phi is used somewhere else than Succ, but this should not prevent
118 %a = phi i32 [ 1, %entry ], [ 0, %Use ] ; <i32> [#uses=1]
121 BB.tomerge: ; preds = %BB.tomerge
122 %conde = call i1 @foo( ) ; <i1> [#uses=1]
123 br i1 %conde, label %Use, label %Exit
126 %cond = call i1 @bar( i32 %a ) ; <i1> [#uses=1]
127 br i1 %cond, label %Succ, label %Exit
129 Exit: ; preds = %Use, %Succ