mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
a29a6b9a6c
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138906 91177308-0d34-0410-b5e6-96231b3b80d8
13 lines
295 B
LLVM
13 lines
295 B
LLVM
; RUN: llvm-as < %s | llvm-dis | not grep {void@}
|
|
; PR2894
|
|
declare void @g()
|
|
define void @f() {
|
|
invoke void @g() to label %c unwind label %c
|
|
c:
|
|
%exn = landingpad {i8*, i32} personality i32 (...)* @__gxx_personality_v0
|
|
cleanup
|
|
ret void
|
|
}
|
|
|
|
declare i32 @__gxx_personality_v0(...)
|