mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
c05412175e
stores of arguments in the same cache line. This fixes the second half of <rdar://problem/8674845>. llvm-svn: 129345
12 lines
440 B
LLVM
12 lines
440 B
LLVM
; RUN: llc < %s -march=arm -mattr=+neon -float-abi=soft | 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)
|