mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
4572ce85b0
llvm-svn: 33296
11 lines
214 B
LLVM
11 lines
214 B
LLVM
; Do not remove the invoke!
|
|
;
|
|
; RUN: llvm-upgrade < %s | llvm-as | 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
|
|
}
|