blob: a61fa614213a6f63361efd37eae0095afc43cb22 [file] [log] [blame]
; 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
}