aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/fp-arg-shuffle.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/ARM/fp-arg-shuffle.ll')
-rw-r--r--test/CodeGen/ARM/fp-arg-shuffle.ll11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/CodeGen/ARM/fp-arg-shuffle.ll b/test/CodeGen/ARM/fp-arg-shuffle.ll
deleted file mode 100644
index 4996cc8ecbf0..000000000000
--- a/test/CodeGen/ARM/fp-arg-shuffle.ll
+++ /dev/null
@@ -1,11 +0,0 @@
-; RUN: llc -mtriple=arm-eabi -mattr=+neon -float-abi=soft %s -o - | FileCheck %s
-
-; CHECK: function1
-; CHECK-NOT: vmov
-define double @function1(double %a, double %b, double %c, double %d, double %e, double %f) nounwind noinline ssp {
-entry:
- %call = tail call double @function2(double %f, double %e, double %d, double %c, double %b, double %a) nounwind
- ret double %call
-}
-
-declare double @function2(double, double, double, double, double, double)