llvm-6502/test/Other/2008-10-15-MissingSpace.ll

8 lines
159 B
LLVM
Raw Normal View History

; 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
}