1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00
llvm-mirror/test/Other/2008-10-15-MissingSpace.ll

8 lines
159 B
LLVM
Raw Normal View History

2008-10-16 00:34:34 +02:00
; 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
}