Change Neon VLDn intrinsics to return multiple values instead of really
[oota-llvm.git] / test / CodeGen / ARM / ret_arg4.ll
index cb7b1974db19745e084a67e8fbc2f1f2572ea9b6..a9c66e9e98d1ae6ec4662197cdfe7c2718280ed8 100644 (file)
@@ -1,4 +1,5 @@
 ; RUN: llvm-as < %s | llc -march=arm
-int %test(int %a1, int %a2, int %a3, int %a4) {
-  ret int %a4
+
+define i32 @test(i32 %a1, i32 %a2, i32 %a3, i32 %a4) {
+        ret i32 %a4
 }