summaryrefslogtreecommitdiffstats
path: root/newlib/libm/machine/spu/headers/acoshf.h
blob: 537706c8a43c8770e562e632c79c51b0b24571dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "headers/acoshf4.h"
#include "headers/dom_chkf_less_than.h"

static __inline float _acoshf(float x)
{
  float res;
  vector float vx;
  vector float vc = { 1.0, 1.0, 1.0, 1.0 };

  vx = spu_promote(x, 0);
  res = spu_extract(_acoshf4(vx), 0);
#ifndef _IEEE_LIBM
  dom_chkf_less_than(vx, vc);
#endif
  return res;
}