summaryrefslogtreecommitdiff
path: root/test/Transforms/Inline/2003-09-22-PHINodeInlineFail.ll
blob: d1db941f096c0399ae4b78e65883164dda6cfb94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
; RUN: llvm-as < %s | 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
}