aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/Assembler/2005-01-31-CallingAggregateFunction.ll4
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 e6baf34a6c..9bd6e31e39 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()