Don't hard code the desired alignment for loops -- it isn't 16-bytes on
[oota-llvm.git] / test / Assembler / 2005-01-31-CallingAggregateFunction.ll
index 366bd7326d310739ebf840f95f37d084919fce7f..ce769a2e9d7bfcc5270811cc8a97de0a2a2b7b62 100644 (file)
@@ -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()