summaryrefslogtreecommitdiffstatshomepage
path: root/lib/libm/atanf.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libm/atanf.c')
-rw-r--r--lib/libm/atanf.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/lib/libm/atanf.c b/lib/libm/atanf.c
index 053fc1b6d6..40bc363c29 100644
--- a/lib/libm/atanf.c
+++ b/lib/libm/atanf.c
@@ -23,25 +23,25 @@
#include "libm.h"
static const float atanhi[] = {
- 4.6364760399e-01, /* atan(0.5)hi 0x3eed6338 */
- 7.8539812565e-01, /* atan(1.0)hi 0x3f490fda */
- 9.8279368877e-01, /* atan(1.5)hi 0x3f7b985e */
- 1.5707962513e+00, /* atan(inf)hi 0x3fc90fda */
+ 4.6364760399e-01f, /* atan(0.5)hi 0x3eed6338 */
+ 7.8539812565e-01f, /* atan(1.0)hi 0x3f490fda */
+ 9.8279368877e-01f, /* atan(1.5)hi 0x3f7b985e */
+ 1.5707962513e+00f, /* atan(inf)hi 0x3fc90fda */
};
static const float atanlo[] = {
- 5.0121582440e-09, /* atan(0.5)lo 0x31ac3769 */
- 3.7748947079e-08, /* atan(1.0)lo 0x33222168 */
- 3.4473217170e-08, /* atan(1.5)lo 0x33140fb4 */
- 7.5497894159e-08, /* atan(inf)lo 0x33a22168 */
+ 5.0121582440e-09f, /* atan(0.5)lo 0x31ac3769 */
+ 3.7748947079e-08f, /* atan(1.0)lo 0x33222168 */
+ 3.4473217170e-08f, /* atan(1.5)lo 0x33140fb4 */
+ 7.5497894159e-08f, /* atan(inf)lo 0x33a22168 */
};
static const float aT[] = {
- 3.3333328366e-01,
- -1.9999158382e-01,
- 1.4253635705e-01,
- -1.0648017377e-01,
- 6.1687607318e-02,
+ 3.3333328366e-01f,
+ -1.9999158382e-01f,
+ 1.4253635705e-01f,
+ -1.0648017377e-01f,
+ 6.1687607318e-02f,
};
float atanf(float x)