Update copyright notices with scripts/update-copyrights
[glibc.git] / sysdeps / powerpc / fpu / s_llroundf.c
blob81b957ac2e200bc1cdeb8945f8c269fadd305c6f
1 /* Round float value to long long int.
2 Copyright (C) 1997-2014 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
19 #include <math.h>
21 /* Round to the nearest integer, with values exactly on a 0.5 boundary
22 rounded away from zero, regardless of the current rounding mode.
23 If (long long)x, when x is out of range of a long long, clips at
24 LLONG_MAX or LLONG_MIN, then this implementation also clips. */
26 long long int
27 __llroundf (float x)
29 long long xr = (long long) x;
30 float xrf = (float) xr;
32 if (x >= 0.0)
34 if (x - xrf >= 0.5)
35 xr += (long long) ((unsigned long long) xr + 1) > 0;
37 else
39 if (xrf - x >= 0.5)
40 xr -= (long long) ((unsigned long long) xr - 1) < 0;
42 return xr;
44 weak_alias (__llroundf, llroundf)