summaryrefslogtreecommitdiff
path: root/test/Transforms/SCCP/2002-05-20-MissedIncomingValue.ll
blob: c851efdb0e1a6cb2559a5f7c52de14958f070909 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
; This test shows a case where SCCP is incorrectly eliminating the PHI node
; because it thinks it has a constant 0 value, when it really doesn't.

; RUN: llvm-upgrade < %s | llvm-as | opt -sccp | llvm-dis | grep phi

int "test"(int %A, bool %c) {
bb1:
	br label %BB2
BB2:
	%V = phi int [0, %bb1], [%A, %BB4]
	br label %BB3

BB3:
	br bool %c, label %BB4, label %BB5
BB4:
	br label %BB2

BB5:
	ret int %V
}