mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +01:00
4572ce85b0
llvm-svn: 33296
12 lines
213 B
LLVM
12 lines
213 B
LLVM
; Do not remove the invoke!
|
|
;
|
|
; RUN: llvm-upgrade < %s | llvm-as | opt -simplifycfg -disable-output
|
|
|
|
int %test() {
|
|
%A = invoke int %test() to label %Ret except label %Ret2
|
|
Ret:
|
|
ret int %A
|
|
Ret2:
|
|
ret int undef
|
|
}
|