X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FAssembler%2F2005-01-31-CallingAggregateFunction.ll;h=ce769a2e9d7bfcc5270811cc8a97de0a2a2b7b62;hb=7555c40c48eb8f468855b3a8c87a3befb26b1d3e;hp=366bd7326d310739ebf840f95f37d084919fce7f;hpb=3401c99889184fee77307889914299f283e23def;p=oota-llvm.git diff --git a/test/Assembler/2005-01-31-CallingAggregateFunction.ll b/test/Assembler/2005-01-31-CallingAggregateFunction.ll index 366bd7326d3..ce769a2e9d7 100644 --- a/test/Assembler/2005-01-31-CallingAggregateFunction.ll +++ b/test/Assembler/2005-01-31-CallingAggregateFunction.ll @@ -1,9 +1,8 @@ -; RUN: ignore llvm-as < %s -o /dev/null -f |& \ -; RUN: grep {LLVM functions cannot return aggregate types} +; RUN: llvm-as %s -o /dev/null define void @test() { - call {} @foo() + call {i32} @foo() ret void } -declare {} @foo() +declare {i32 } @foo()