mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
722de8a9aa
llvm-svn: 138894
15 lines
337 B
LLVM
15 lines
337 B
LLVM
; RUN: opt < %s -prune-eh -S | grep invoke
|
|
|
|
declare void @External()
|
|
|
|
define void @foo() {
|
|
invoke void @External( )
|
|
to label %Cont unwind label %Cont
|
|
Cont: ; preds = %0, %0
|
|
%exn = landingpad {i8*, i32} personality i32 (...)* @__gxx_personality_v0
|
|
cleanup
|
|
ret void
|
|
}
|
|
|
|
declare i32 @__gxx_personality_v0(...)
|