aboutsummaryrefslogtreecommitdiffstats
path: root/test/Other/2008-10-15-MissingSpace.ll
blob: cac696ed6ff25519338155aa0fb5544556e0a0d0 (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(...)