blob: 77f6bc869266ef2f9882fe729e18d2cb636deb9e [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-as < %s | opt -sccp | llvm-dis | not grep phi
2
3define i999 @test(i999%A, i1 %c) {
4bb1:
5 br label %BB2
6BB2:
7 %V = phi i999 [2, %bb1], [%A, %BB4]
8 br label %BB3
9
10BB3:
11 %E = trunc i999 %V to i1
12 %F = and i1 %E, %c
13 br i1 %F, label %BB4, label %BB5
14BB4:
15 br label %BB2
16
17BB5:
18 ret i999 %V
19}