aboutsummaryrefslogtreecommitdiff
path: root/math/sincosf.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/sincosf.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/sincosf.c')
-rw-r--r--math/sincosf.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/math/sincosf.c b/math/sincosf.c
index fb6a29d..e6cd41e 100644
--- a/math/sincosf.c
+++ b/math/sincosf.c
@@ -5,10 +5,6 @@
* SPDX-License-Identifier: MIT
*/
-#if WANT_SINGLEPREC
-#include "single/s_sincosf.c"
-#else
-
#include <stdint.h>
#include <math.h>
#include "math_config.h"
@@ -81,5 +77,3 @@ sincosf (float y, float *sinp, float *cosp)
#endif
}
}
-
-#endif