X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FAssembler%2F2005-01-31-CallingAggregateFunction.ll;h=14045138f811e04975f073e85cd943ae6833d0d1;hb=b70a571c99932464ed828fa425ea1e2783d08fab;hp=997bbfad7a5b029e120e6502ae14f0b5314f61c4;hpb=2102cab02f65fa89e18aa0a2ba98f53ecc322f03;p=oota-llvm.git diff --git a/test/Assembler/2005-01-31-CallingAggregateFunction.ll b/test/Assembler/2005-01-31-CallingAggregateFunction.ll index 997bbfad7a5..14045138f81 100644 --- a/test/Assembler/2005-01-31-CallingAggregateFunction.ll +++ b/test/Assembler/2005-01-31-CallingAggregateFunction.ll @@ -1,8 +1,8 @@ -; RUN: not llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f define void @test() { - call {} @foo() + call {i32} @foo() ret void } -declare {} @foo() +declare {i32 } @foo()