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

v64sf_acos.c « amdgcn « machine « libm « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 216df0ac91a3c8269725517c2a920cb190792eb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* Based on newlib/libm/mathfp/sf_acos.c in Newlib.  */

#include "amdgcnmach.h"

v64sf v64sf_asinef_aux (v64sf, int, v64si);

DEF_VS_MATH_FUNC (v64sf, acosf, v64sf x)
{
  return v64sf_asinef_aux(x, 1, __mask);
}

DEF_VARIANTS (acosf, sf, sf)