summaryrefslogtreecommitdiff
path: root/test/Transforms/CodeExtractor/2004-11-12-InvokeExtract.ll
blob: 4ada2aeb2883df72be1582b2ba779447f4dfd663 (plain)
1
2
3
4
5
6
7
8
9
10
; RUN: llvm-upgrade < %s | llvm-as | opt -extract-blocks -disable-output
int %foo() {
	br label %EB
EB:
	%V = invoke int %foo() to label %Cont unwind label %Unw
Cont:
	ret int %V
Unw:
	unwind
}