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

; RUN: llvm-as < %s | 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
}