aboutsummaryrefslogtreecommitdiff
path: root/math/cosf.c
diff options
context:
space:
mode:
authorSzabolcs Nagy <szabolcs.nagy@arm.com>2019-07-18 10:21:31 +0100
committerSzabolcs Nagy <szabolcs.nagy@arm.com>2019-07-18 10:21:31 +0100
commit4f408e745648aeae2f769e5675ddaed41e10b936 (patch)
treebb5c5430148a1d963c403baa6c99d2614fa85ecf /math/cosf.c
parent3a1d8e6f16d21cfda6f33e43a1d1df98a05c4dde (diff)
downloadarm-optimized-routines-4f408e745648aeae2f769e5675ddaed41e10b936.tar.gz
Remove math/single and rem_pio2
math/single contained code for systems without double precision fpu and rem_pio2 is not used currently and likely will be designed differently when double precision trigonometric functions are added.
Diffstat (limited to 'math/cosf.c')
-rw-r--r--math/cosf.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/math/cosf.c b/math/cosf.c
index 84a138f..831b39e 100644
--- a/math/cosf.c
+++ b/math/cosf.c
@@ -5,10 +5,6 @@
* SPDX-License-Identifier: MIT
*/
-#if WANT_SINGLEPREC
-#include "single/s_cosf.c"
-#else
-
#include <stdint.h>
#include <math.h>
#include "math_config.h"
@@ -65,5 +61,3 @@ cosf (float y)
else
return __math_invalidf (y);
}
-
-#endif