aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/LICM/sink_critical_edge.ll
blob: 6998ab1580c3552b3ef910888e5fe1293c2973fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
; This testcase checks to make sure the sinker does not cause problems with
; critical edges.

; RUN: llvm-as < %s | opt -licm | llvm-dis | %prcontext add 1 | grep Exit

define void @test() {
Entry:
	br i1 false, label %Loop, label %Exit
Loop:		; preds = %Loop, %Entry
	%X = add i32 0, 1		; <i32> [#uses=1]
	br i1 false, label %Loop, label %Exit
Exit:		; preds = %Loop, %Entry
	%Y = phi i32 [ 0, %Entry ], [ %X, %Loop ]		; <i32> [#uses=0]
	ret void
}