aboutsummaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/2005-07-07-DeadPHILoop.ll
blob: 29a1d7f7946c267a42786e9b714aa2511cb10d38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; RUN: llvm-as < %s | 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
}