mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-21 00:32:23 +00:00
c80dfba667
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32626 91177308-0d34-0410-b5e6-96231b3b80d8
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
|
|
}
|