Add a testcase for BZ #14716
[glibc.git] / math / w_tgammal.c
blob86adab29eada4a064d17654a29affa62f13422ca
1 /* w_gammal.c -- long double version of w_gamma.c.
2 * Conversion to long double by Ulrich Drepper,
3 * Cygnus Support, drepper@cygnus.com.
4 */
6 /*
7 * ====================================================
8 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
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 * ====================================================
17 /* long double gammal(double x)
18 * Return the Gamma function of x.
21 #include <math.h>
22 #include <math_private.h>
24 long double
25 __tgammal(long double x)
27 int local_signgam;
28 long double y = __ieee754_gammal_r(x,&local_signgam);
30 if(__builtin_expect(!__finitel(y), 0) && __finitel(x)
31 && _LIB_VERSION != _IEEE_) {
32 if(x==0.0)
33 return __kernel_standard_l(x,x,250); /* tgamma pole */
34 else if(__floorl(x)==x&&x<0.0L)
35 return __kernel_standard_l(x,x,241); /* tgamma domain */
36 else
37 return __kernel_standard_l(x,x,240); /* tgamma overflow */
39 return local_signgam < 0 ? - y : y;
41 weak_alias (__tgammal, tgammal)