[ARM] Add v8.1a "Rounding Double Multiply Add/Subtract" extension
[oota-llvm.git] / test / Assembler / 2005-01-31-CallingAggregateFunction.ll
index 0f8bab4a06238fdffbc65c3cca3c50a39c7be20a..a5a917d08abaadd70880b15b5e559de9f6ba3791 100644 (file)
@@ -1,8 +1,9 @@
-; RUN: llvm-as %s -o /dev/null 2>&1 | grep "LLVM functions cannot return aggregate types"
+; RUN: llvm-as %s -o /dev/null
+; RUN: verify-uselistorder %s
 
-void %test() {
-       call {} %foo()
+define void @test() {
+       call {i32} @foo()
        ret void
 }
 
-declare {} %foo()
+declare {i32 } @foo()