summaryrefslogtreecommitdiff
path: root/test/Other/2008-10-15-MissingSpace.ll
blob: a61fa614213a6f63361efd37eae0095afc43cb22 (plain)
1
2
3
4
5
6
7
; 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: ret void
}