summaryrefslogtreecommitdiffstats
path: root/test/Other/2008-10-15-MissingSpace.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Other/2008-10-15-MissingSpace.ll')
-rw-r--r--test/Other/2008-10-15-MissingSpace.ll7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/Other/2008-10-15-MissingSpace.ll b/test/Other/2008-10-15-MissingSpace.ll
new file mode 100644
index 0000000..a61fa61
--- /dev/null
+++ b/test/Other/2008-10-15-MissingSpace.ll
@@ -0,0 +1,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
+}