From: Duncan Sands Date: Wed, 15 Oct 2008 22:34:34 +0000 (+0000) Subject: Testcase for PR2894. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=27d860e56657a2b0495d8776a3269bf69eda4159;p=oota-llvm.git Testcase for PR2894. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57604 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Other/2008-10-15-MissingSpace.ll b/test/Other/2008-10-15-MissingSpace.ll new file mode 100644 index 00000000000..a61fa614213 --- /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 +}