From 7e4687a9f2dac199d0ae89e8e0101dd273811fde Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 23 Apr 2008 05:29:14 +0000 Subject: [PATCH] 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 --- test/Assembler/2005-01-31-CallingAggregateFunction.ll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Assembler/2005-01-31-CallingAggregateFunction.ll b/test/Assembler/2005-01-31-CallingAggregateFunction.ll index e6baf34a6c7..9bd6e31e39d 100644 --- a/test/Assembler/2005-01-31-CallingAggregateFunction.ll +++ b/test/Assembler/2005-01-31-CallingAggregateFunction.ll @@ -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() -- 2.11.0