Taints the non-acquire RMW's store address with the load part
[oota-llvm.git] / test / CodeGen / ARM / fp-arg-shuffle.ll
1 ; RUN: llc -mtriple=arm-eabi -mattr=+neon -float-abi=soft %s -o - | FileCheck %s
2
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
9 }
10
11 declare double @function2(double, double, double, double, double, double)