diff options
author | Chris Lattner <sabre@nondot.org> | 2008-04-23 05:29:14 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-04-23 05:29:14 +0000 |
commit | 7e4687a9f2dac199d0ae89e8e0101dd273811fde (patch) | |
tree | c1d793fc086fd12c712a537e5668c2c2798642a2 | |
parent | f4cde4ec8197819bf872e551455c8a2e4c4864ab (diff) | |
download | external_llvm-7e4687a9f2dac199d0ae89e8e0101dd273811fde.zip external_llvm-7e4687a9f2dac199d0ae89e8e0101dd273811fde.tar.gz external_llvm-7e4687a9f2dac199d0ae89e8e0101dd273811fde.tar.bz2 |
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
-rw-r--r-- | test/Assembler/2005-01-31-CallingAggregateFunction.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Assembler/2005-01-31-CallingAggregateFunction.ll b/test/Assembler/2005-01-31-CallingAggregateFunction.ll index e6baf34..9bd6e31 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() |