aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/SimplifyCFG/2003-08-05-MishandleInvoke.ll
blob: 179ef72d6c98d14ead49906e06eda5d5b0676d1c (plain)
1
2
3
4
5
6
7
8
9
10
; Do not remove the invoke!
;
; RUN: llvm-as < %s | opt -simplifycfg | llvm-dis | grep invoke

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