Welcome to mirror list, hosted at ThFree Co, Russian Federation.

v64sf_gamma.c « amdgcn « machine « libm « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 93f9172789e6848b8828d66f383d67096adf84b1 (plain)
1
2
3
4
5
6
7
8
9
10
#include "amdgcnmach.h"

v64sf v64sf_lgammaf_aux (v64sf x, v64si __mask);

DEF_VS_MATH_FUNC (v64sf, gammaf, v64sf x)
{
  return v64sf_lgammaf_aux(x, __mask);
}

DEF_VARIANTS (gammaf, sf, sf)