aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/LICM/2003-02-27-StoreSinkPHIs.ll
blob: caf50eb5fadf7bb0cd5fe02c40be93909ce62a28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; LICM is adding stores before phi nodes.  bad.

; RUN: llvm-upgrade < %s | llvm-as | opt -licm

bool %test(bool %c) {
	br bool %c, label %Loop, label %Out
Loop:
	store int 0, int* null
	br bool %c, label %Loop, label %Out
Out:
	%X = phi bool [%c, %0], [true, %Loop]
	ret bool %X
}