[NFC][Py Reformat] Reformat python files in llvm
[llvm-project.git] / llvm / test / CodeGen / ARM / fp-arg-shuffle.ll
blob4996cc8ecbf02209e511ee7687a4974a0347965f
1 ; RUN: llc -mtriple=arm-eabi -mattr=+neon -float-abi=soft %s -o - | FileCheck %s
3 ; CHECK: function1
4 ; CHECK-NOT: vmov
5 define double @function1(double %a, double %b, double %c, double %d, double %e, double %f) nounwind noinline ssp {
6 entry:
7   %call = tail call double @function2(double %f, double %e, double %d, double %c, double %b, double %a) nounwind
8   ret double %call
11 declare double @function2(double, double, double, double, double, double)