Tighten the conditions under which we do PRE, remove some unneeded code, and correct...
[oota-llvm.git] / test / Assembler / 2005-01-31-CallingAggregateFunction.ll
index 997bbfad7a5b029e120e6502ae14f0b5314f61c4..14045138f811e04975f073e85cd943ae6833d0d1 100644 (file)
@@ -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()