OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [trunk/] [gnu-src/] [newlib-1.18.0/] [newlib/] [libm/] [machine/] [spu/] [headers/] [log10.h] - Blame information for rev 207

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 207 jeremybenn
#include "headers/log10d2.h"
2
#include "headers/dom_chkd_less_than.h"
3
 
4
static __inline double _log10(double x)
5
{
6
  double res;
7
  vector double vx;
8
  vector double vc = { 0.0, 0.0 };
9
 
10
  vx = spu_promote(x, 0);
11
  res = spu_extract(_log10d2(vx), 0);
12
#ifndef _IEEE_LIBM
13
  dom_chkd_less_than(vx, vc);
14
#endif
15
  return res;
16
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.