blob: ae02b792e4d664a3d669f1328f7714396b7bda3e [file] [log] [blame]
Cameron Zwarich4071a712011-04-02 02:40:43 +00001; RUN: llc < %s -march=arm -mattr=+neon -float-abi=soft | FileCheck %s
2
3; CHECK: function1
Cameron Zwarichd0aacbc2011-04-12 02:24:17 +00004; CHECK-NOT: vmov
Cameron Zwarich4071a712011-04-02 02:40:43 +00005define 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)