mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-02 00:42:52 +01:00
a9d8d647ca
llvm-svn: 49971
12 lines
209 B
LLVM
12 lines
209 B
LLVM
; RUN: llvm-as < %s | opt -prune-eh | llvm-dis | grep invoke
|
|
|
|
declare void @External()
|
|
|
|
define void @foo() {
|
|
invoke void @External( )
|
|
to label %Cont unwind label %Cont
|
|
Cont: ; preds = %0, %0
|
|
ret void
|
|
}
|
|
|