1 ; RUN: opt < %s -condprop -S | not grep phi
3 define i32 @foo(i1, i32, i32) {
5 br i1 %0, label %eq, label %ne
7 eq: ; preds = %prologue
8 store i32 0, i32* inttoptr (i32 10000 to i32*)
9 %3 = icmp eq i32 %1, %2 ; <i1> [#uses=1]
12 ne: ; preds = %prologue
13 %4 = icmp ne i32 %1, %2 ; <i1> [#uses=1]
16 join: ; preds = %ne, %eq
17 %5 = phi i1 [ %3, %eq ], [ %4, %ne ] ; <i1> [#uses=1]
18 br i1 %5, label %yes, label %no
21 store i32 0, i32* inttoptr (i32 20000 to i32*)