~ubuntu-branches/ubuntu/precise/eglibc/precise-201308281639

« back to all changes in this revision

Viewing changes to math/w_remainderl.c

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2012-02-08 01:58:09 UTC
  • mfrom: (1.5.3) (288.1.12 precise)
  • Revision ID: package-import@ubuntu.com-20120208015809-ulscst7uteq3e22z
Tags: 2.15~pre6-0ubuntu10
Merge from Debian (r5151, 2.13-26).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* w_remainderl.c -- long double version of w_remainder.c.
2
 
 * Conversion to long double by Ulrich Drepper,
3
 
 * Cygnus Support, drepper@cygnus.com.
4
 
 */
5
 
 
6
 
/*
7
 
 * ====================================================
8
 
 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
9
 
 *
10
 
 * Developed at SunPro, a Sun Microsystems, Inc. business.
11
 
 * Permission to use, copy, modify, and distribute this
12
 
 * software is freely granted, provided that this notice
13
 
 * is preserved.
14
 
 * ====================================================
15
 
 */
16
 
 
17
 
#if defined(LIBM_SCCS) && !defined(lint)
18
 
static char rcsid[] = "$NetBSD: $";
19
 
#endif
20
 
 
21
 
/*
22
 
 * wrapper remainderl(x,p)
23
 
 */
 
1
/* Copyright (C) 2011 Free Software Foundation, Inc.
 
2
   This file is part of the GNU C Library.
 
3
   Contributed by Ulrich Drepper <drepper@gmail.com>, 2011.
 
4
 
 
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.
 
9
 
 
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.
 
14
 
 
15
   You should have received a copy of the GNU Lesser General Public
 
16
   License along with the GNU C Library; if not, write to the Free
 
17
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
 
18
   02111-1307 USA.  */
24
19
 
25
20
#include <math.h>
26
 
#include "math_private.h"
27
 
 
28
 
#ifdef __STDC__
29
 
        long double __remainderl(long double x, long double y)
30
 
                /* wrapper remainderl */
31
 
#else
32
 
        long double __remainderl(x,y)                   /* wrapper remainder */
33
 
        long double x,y;
34
 
#endif
 
21
#include <math_private.h>
 
22
 
 
23
 
 
24
/* wrapper remainderl */
 
25
long double
 
26
__remainderl (long double x, long double y)
35
27
{
36
 
#ifdef _IEEE_LIBM
37
 
        return __ieee754_remainderl(x,y);
38
 
#else
39
 
        long double z;
40
 
        z = __ieee754_remainderl(x,y);
41
 
        if(_LIB_VERSION == _IEEE_ || __isnanl(y)) return z;
42
 
        if(y==0.0)
43
 
            return __kernel_standard(x,y,228); /* remainder(x,0) */
44
 
        else
45
 
            return z;
46
 
#endif
 
28
  if (((__builtin_expect (y == 0.0L, 0) && ! __isnanl (x))
 
29
       || (__builtin_expect (__isinf_nsl (x), 0) && ! __isnanl (y)))
 
30
      && _LIB_VERSION != _IEEE_)
 
31
    return __kernel_standard (x, y, 228); /* remainder domain */
 
32
 
 
33
  return __ieee754_remainderl (x, y);
47
34
}
48
35
weak_alias (__remainderl, remainderl)