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

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

#include "amdgcnmach.h"

v64df v64df_sine_aux (v64df, int, v64di);

DEF_VD_MATH_FUNC (v64df, sin, v64df x)
{
  return v64df_sine_aux (x, 0, __mask);
}

DEF_VARIANTS (sin, df, df)