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

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libm/machine/spu/headers/log1p.h')
-rw-r--r--newlib/libm/machine/spu/headers/log1p.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/newlib/libm/machine/spu/headers/log1p.h b/newlib/libm/machine/spu/headers/log1p.h
deleted file mode 100644
index 758be8d37..000000000
--- a/newlib/libm/machine/spu/headers/log1p.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#include "headers/log1pd2.h"
-#include "headers/dom_chkd_less_than.h"
-
-static __inline double _log1p(double x)
-{
- double res;
- vector double vx;
- vector double vc = { -1.0, -1.0 };
-
- vx = spu_promote(x, 0);
- res = spu_extract(_log1pd2(vx), 0);
-#ifndef _IEEE_LIBM
- dom_chkd_less_than(vx, vc);
-#endif
- return res;
-}