summaryrefslogtreecommitdiff
path: root/test/Other/2008-10-15-MissingSpace.ll
blob: d16ea72c2bda9ec54b94de9738c7c2ee5528ca99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; 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(...)