aboutsummaryrefslogtreecommitdiff
path: root/test/Transforms/SimplifyCFG/2003-08-05-InvokeCrash.ll
blob: b6638ee519dae572349f52b0ba4e8f9edda6914b (plain)
1
2
3
4
5
6
7
8
9
; Do not remove the invoke!
;
; RUN: llvm-as < %s | opt -simplifycfg -disable-output

int %test() {
	%A = invoke int %test() to label %Ret except label %Ret
Ret:
	ret int %A
}