]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgfortran/generated/nearest_r16.c
minloc1.m4: Update copyright year and ajust headers order.
[thirdparty/gcc.git] / libgfortran / generated / nearest_r16.c
CommitLineData
644cb69f 1/* Implementation of the NEAREST intrinsic
36ae8a61 2 Copyright 2003, 2007 Free Software Foundation, Inc.
644cb69f
FXC
3 Contributed by Richard Henderson <rth@redhat.com>.
4
5This file is part of the GNU Fortran 95 runtime library (libgfortran).
6
7Libgfortran is free software; you can redistribute it and/or
8modify it under the terms of the GNU General Public
9License as published by the Free Software Foundation; either
10version 2 of the License, or (at your option) any later version.
11
12In addition to the permissions in the GNU General Public License, the
13Free Software Foundation gives you unlimited permission to link the
14compiled version of this file into combinations with other programs,
15and to distribute those combinations without any restriction coming
16from the use of this file. (The General Public License restrictions
17do apply in other respects; for example, they cover modification of
18the file, and distribution when not linked into a combine
19executable.)
20
21Libgfortran is distributed in the hope that it will be useful,
22but WITHOUT ANY WARRANTY; without even the implied warranty of
23MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24GNU General Public License for more details.
25
26You should have received a copy of the GNU General Public
27License along with libgfortran; see the file COPYING. If not,
28write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
29Boston, MA 02110-1301, USA. */
30
644cb69f
FXC
31#include "libgfortran.h"
32
33
34#if defined (HAVE_GFC_REAL_16) && defined (HAVE_COPYSIGNL) && defined (HAVE_NEXTAFTERL)
35
36extern GFC_REAL_16 nearest_r16 (GFC_REAL_16 s, GFC_REAL_16 dir);
37export_proto(nearest_r16);
38
39GFC_REAL_16
40nearest_r16 (GFC_REAL_16 s, GFC_REAL_16 dir)
41{
42 dir = copysignl (__builtin_infl (), dir);
43 if (FLT_EVAL_METHOD != 0)
44 {
45 /* ??? Work around glibc bug on x86. */
46 volatile GFC_REAL_16 r = nextafterl (s, dir);
47 return r;
48 }
49 else
50 return nextafterl (s, dir);
51}
52
53#endif