1 ; RUN: llc -march=mips64el -mcpu=mips64r2 -O3 < %s |\
2 ; RUN: FileCheck %s -check-prefix=HARD
3 ; RUN: llc -march=mips64el -mcpu=mips64r2 -mattr=+soft-float < %s |\
4 ; RUN: FileCheck %s -check-prefix=SOFT
6 ; Check that %add is not passed in an integer register.
8 ; HARD-LABEL: callfloor:
11 define double @callfloor(double %d) nounwind readnone {
13 %add = fadd double %d, 1.000000e+00
14 %call = tail call double @floor(double %add) nounwind readnone
18 declare double @floor(double) nounwind readnone
25 define double @f64add(double %a, double %b) {
27 %add = fadd double %a, %b