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

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