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/sqrtf.h')
-rw-r--r--newlib/libm/machine/spu/headers/sqrtf.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/newlib/libm/machine/spu/headers/sqrtf.h b/newlib/libm/machine/spu/headers/sqrtf.h
deleted file mode 100644
index c1f5ab223..000000000
--- a/newlib/libm/machine/spu/headers/sqrtf.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#include "headers/sqrtf4.h"
-#include "headers/dom_chkf_less_than.h"
-
-static __inline float _sqrtf(float in)
-{
- float res;
- vector float vx;
- vector float vc = { 0.0, 0.0, 0.0, 0.0 };
-
- vx = spu_promote(in, 0);
- res = spu_extract(_sqrtf4(vx), 0);
-#ifndef _IEEE_LIBM
- dom_chkf_less_than(vx, vc);
-#endif
- return res;
-}