aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/Inline/2003-09-22-PHINodeInlineFail.ll
blob: 6e4d1b39e7edf6d6c8f514768be6b03d77a8fb4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
; RUN: llvm-upgrade < %s | llvm-as | opt -inline -disable-output
implementation

int %main() {
entry:
	invoke void %__main( )
			to label %LongJmpBlkPre except label %LongJmpBlkPre

LongJmpBlkPre:
	%i.3 = phi uint [ 0, %entry ], [ 0, %entry]
	ret int 0
}

void %__main() {
	ret void
}