summaryrefslogtreecommitdiffstats
path: root/test/Transforms/ADCE/2002-05-22-PHITest.ll
blob: cf9872e2e1169a6b56e32b0eed0eab3aee8487be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; It is illegal to remove BB1 because it will mess up the PHI node!
;
; RUN: llvm-upgrade < %s | llvm-as | opt -adce | llvm-dis | grep BB1


int "test"(bool %C, int %A, int %B) {
	br bool %C, label %BB1, label %BB2
BB1:
	br label %BB2
BB2:
	%R = phi int [%A, %0], [%B, %BB1]
	ret int %R
}