[llvm-commits] [llvm] r50135 - /llvm/trunk/test/Assembler/2005-01-31-CallingAggregateFunction.ll
Chris Lattner
sabre at nondot.org
Tue Apr 22 22:29:14 PDT 2008
Author: lattner
Date: Wed Apr 23 00:29:14 2008
New Revision: 50135
URL: http://llvm.org/viewvc/llvm-project?rev=50135&view=rev
Log:
returning an empty multiple return list is not valid.
Modified:
llvm/trunk/test/Assembler/2005-01-31-CallingAggregateFunction.ll
Modified: llvm/trunk/test/Assembler/2005-01-31-CallingAggregateFunction.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Assembler/2005-01-31-CallingAggregateFunction.ll?rev=50135&r1=50134&r2=50135&view=diff
==============================================================================
--- llvm/trunk/test/Assembler/2005-01-31-CallingAggregateFunction.ll (original)
+++ llvm/trunk/test/Assembler/2005-01-31-CallingAggregateFunction.ll Wed Apr 23 00:29:14 2008
@@ -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()
More information about the llvm-commits
mailing list