diff options
Diffstat (limited to 'sysdeps/powerpc/powerpc64/fpu/s_llrint.S')
-rw-r--r-- | sysdeps/powerpc/powerpc64/fpu/s_llrint.S | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sysdeps/powerpc/powerpc64/fpu/s_llrint.S b/sysdeps/powerpc/powerpc64/fpu/s_llrint.S index 64255c2aec..cdc70727b6 100644 --- a/sysdeps/powerpc/powerpc64/fpu/s_llrint.S +++ b/sysdeps/powerpc/powerpc64/fpu/s_llrint.S @@ -18,6 +18,7 @@ #include <sysdep.h> #include <math_ldbl_opt.h> +#include <libm-alias-float.h> #include <libm-alias-double.h> /* long long int[r3] __llrint (double x[fp1]) */ @@ -39,6 +40,6 @@ libm_alias_double (__lrint, lrint) double parameters are passed in 64bit FPRs and both versions are expected to return [long] long type. */ strong_alias (__llrint, __llrintf) -weak_alias (__llrint, llrintf) +libm_alias_float (__llrint, llrint) strong_alias (__lrint, __lrintf) -weak_alias (__lrint, lrintf) +libm_alias_float (__lrint, lrint) |