aboutsummaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/2005-07-07-DeadPHILoop.ll
blob: be9837dc43ae6bb1f519a7da63c02b1c4f099794 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine -disable-output

; This example caused instcombine to spin into an infinite loop.

void %test(int *%P) {
	ret void
Dead:
	%X = phi int [%Y, %Dead]
	%Y = div int %X, 10
	store int %Y, int* %P
	br label %Dead
}