returning an empty multiple return list is not valid.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50135 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2008-04-23 05:29:14 +00:00
parent f4cde4ec81
commit 7e4687a9f2

View File

@ -1,8 +1,8 @@
; RUN: llvm-as < %s -o /dev/null -f
define void @test() {
call {} @foo()
call {i32} @foo()
ret void
}
declare {} @foo()
declare {i32 } @foo()