1; RUN: llc -mtriple=arm-eabi -mattr=+neon -float-abi=soft %s -o - | FileCheck %s
2
3; CHECK: function1
4; CHECK-NOT: vmov
5define double @function1(double %a, double %b, double %c, double %d, double %e, double %f) nounwind noinline ssp {
6entry:
7  %call = tail call double @function2(double %f, double %e, double %d, double %c, double %b, double %a) nounwind
8  ret double %call
9}
10
11declare double @function2(double, double, double, double, double, double)
12