blob: a61fa614213a6f63361efd37eae0095afc43cb22 [file] [log] [blame]
Duncan Sands27d860e2008-10-15 22:34:34 +00001; RUN: llvm-as < %s | llvm-dis | not grep {void@}
2; PR2894
3declare void @g()
4define void @f() {
5 invoke void @g() to label %c unwind label %c
6 c: ret void
7}