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/asinf.h')
-rw-r--r--newlib/libm/machine/spu/headers/asinf.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/newlib/libm/machine/spu/headers/asinf.h b/newlib/libm/machine/spu/headers/asinf.h
deleted file mode 100644
index cb468ecec..000000000
--- a/newlib/libm/machine/spu/headers/asinf.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#include "headers/asinf4.h"
-#include "headers/dom_chkf_negone_one.h"
-
-static __inline float _asinf(float x)
-{
- float res;
- vector float vx;
-
- vx = spu_splats(x);
- res = spu_extract(_asinf4(vx), 0);
-#ifndef _IEEE_LIBM
- /*
- * Domain error if not in the interval [-1, +1]
- */
- dom_chkf_negone_one(vx);
-#endif
- return res;
-}