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

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

#include "amdgcnmach.h"

v64sf v64sf_sinehf_aux (v64sf, int, v64si);

DEF_VS_MATH_FUNC (v64sf, sinhf, v64sf x)
{
  return v64sf_sinehf_aux (x, 0, __mask);
}

DEF_VARIANTS (sinhf, sf, sf)