summaryrefslogtreecommitdiffstats
path: root/test/Analysis/ScalarEvolution/2008-11-02-QuadraticCrash.ll
blob: 9daff991aee92c89cf5d1159f8ad0461d6bfbf33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
; RUN: opt < %s -analyze -scalar-evolution -disable-output
; PR1827

declare void @use(i32)

define void @foo() {
entry:
	br label %loop_1

loop_1:		; preds = %loop_1, %entry
	%a = phi i32 [ 2, %entry ], [ %b, %loop_1 ]		; <i32> [#uses=2]
	%c = phi i32 [ 5, %entry ], [ %d, %loop_1 ]		; <i32> [#uses=1]
	%b = add i32 %a, 1		; <i32> [#uses=1]
	%d = add i32 %c, %a		; <i32> [#uses=3]
	%A = icmp ult i32 %d, 50		; <i1> [#uses=1]
	br i1 %A, label %loop_1, label %endloop

endloop:		; preds = %loop_1
	call void @use(i32 %d)
	ret void
}
OpenPOWER on IntegriCloud