mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
b1e1e82c54
of using llvm-as, now that opt supports this. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81226 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
338 B
LLVM
16 lines
338 B
LLVM
; RUN: opt %s -extract-blocks -disable-output
|
|
define i32 @foo() {
|
|
br label %EB
|
|
|
|
EB: ; preds = %0
|
|
%V = invoke i32 @foo( )
|
|
to label %Cont unwind label %Unw ; <i32> [#uses=1]
|
|
|
|
Cont: ; preds = %EB
|
|
ret i32 %V
|
|
|
|
Unw: ; preds = %EB
|
|
unwind
|
|
}
|
|
|