mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 15:33:33 +00:00
11 lines
179 B
LLVM
11 lines
179 B
LLVM
|
; RUN: llvm-as < %s | opt -extract-blocks -disable-output
|
||
|
int %foo() {
|
||
|
br label %EB
|
||
|
EB:
|
||
|
%V = invoke int %foo() to label %Cont unwind label %Unw
|
||
|
Cont:
|
||
|
ret int %V
|
||
|
Unw:
|
||
|
unwind
|
||
|
}
|