commit | 4b7c34e80dfa5267d4e7d972f4f348da05d98453 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Wed Apr 23 05:29:14 2008 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Wed Apr 23 05:29:14 2008 +0000 |
tree | c1d793fc086fd12c712a537e5668c2c2798642a2 | |
parent | 43030e74be2ef8b804302f773041e604d6e38c20 [diff] [blame] |
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
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()