elf: Ignore LD_LIBRARY_PATH and debug env var for setuid for static
[glibc.git] / sysdeps / powerpc / fpu / s_modff.c
blob339e863b3d4b53a06153c5f73513dd0e744aa103
1 /* Copyright (C) 2013-2023 Free Software Foundation, Inc.
2 This file is part of the GNU C Library
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If
16 not, see <https://www.gnu.org/licenses/>. */
18 /* ISA 2.07 provides fast GPR to FP instruction (mfvsr{d,wz}) which make
19 generic implementation faster. Also disables for old ISAs that do not
20 have ceil/floor instructions. */
21 #if defined(_ARCH_PWR8) || !defined(_ARCH_PWR5X)
22 # include <sysdeps/ieee754/flt-32/s_modff.c>
23 #else
24 # include <math.h>
25 # include <libm-alias-float.h>
27 float
28 __modff (float x, float *iptr)
30 if (__builtin_isinff (x))
32 *iptr = x;
33 return copysignf (0.0, x);
35 else if (__builtin_isnanf (x))
37 *iptr = NAN;
38 return NAN;
41 if (x >= 0.0)
43 *iptr = floorf (x);
44 return copysignf (x - *iptr, x);
46 else
48 *iptr = ceilf (x);
49 return copysignf (x - *iptr, x);
52 # ifndef __modff
53 libm_alias_float (__modf, modf)
54 # endif
55 #endif