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

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

v64df v64df_lgamma_aux (v64df x, v64di __mask);

DEF_VD_MATH_FUNC (v64df, gamma, v64df x)
{
  return v64df_lgamma_aux(x, __mask);
}

DEF_VARIANTS (gamma, df, df)