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/libc/machine/i386/f_powf.c')
-rw-r--r--newlib/libc/machine/i386/f_powf.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/newlib/libc/machine/i386/f_powf.c b/newlib/libc/machine/i386/f_powf.c
index 501b6b1f3..2daa5b038 100644
--- a/newlib/libc/machine/i386/f_powf.c
+++ b/newlib/libc/machine/i386/f_powf.c
@@ -8,6 +8,8 @@
* ====================================================
*/
+#if !defined(_SOFT_FLOAT)
+
/*
Fast version of pow using Intel float instructions.
@@ -42,3 +44,4 @@ float _f_powf (float x, float y)
return powf (x,y);
}
+#endif