1 ; There should be no phi nodes left.
2 ; RUN: opt < %s -jump-threading -S | not grep "phi i32"
8 define i32 @test(i1 %cond) {
9 br i1 %cond, label %T1, label %F1
20 %B = phi i32 [%v1, %T1], [12, %F1]
21 %A = icmp ne i32 %B, 42
22 br i1 %A, label %T2, label %F2