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:
authorCorinna Vinschen <corinna@vinschen.de>2010-11-29 15:15:02 +0300
committerCorinna Vinschen <corinna@vinschen.de>2010-11-29 15:15:02 +0300
commit371a9496e89ff789def77bb25b1dac4b995584c8 (patch)
treed7deb9e757dbd576c3c457f0645bf89da3b1416a /newlib/libm/complex
parentfafea99b3506a4aea70c775de39fbb16b3ec5c21 (diff)
* libm/complex/catan.c, libm/complex/catanf.c,
libm/complex/ctan.c, libm/complex/ctanf.c: Use HUGE_VAL instead of MAXNUM.
Diffstat (limited to 'newlib/libm/complex')
-rw-r--r--newlib/libm/complex/catan.c4
-rw-r--r--newlib/libm/complex/catanf.c4
-rw-r--r--newlib/libm/complex/ctan.c4
-rw-r--r--newlib/libm/complex/ctanf.c4
4 files changed, 4 insertions, 12 deletions
diff --git a/newlib/libm/complex/catan.c b/newlib/libm/complex/catan.c
index 2cb91bb08..bf9ea01ff 100644
--- a/newlib/libm/complex/catan.c
+++ b/newlib/libm/complex/catan.c
@@ -91,8 +91,6 @@ QUICKREF
__weak_alias(catan, _catan)
#endif
-#define MAXNUM 1.0e308
-
double complex
catan(double complex z)
{
@@ -127,6 +125,6 @@ ovrf:
#if 0
mtherr ("catan", OVERFLOW);
#endif
- w = MAXNUM + MAXNUM * I;
+ w = HUGE_VAL + HUGE_VAL * I;
return w;
}
diff --git a/newlib/libm/complex/catanf.c b/newlib/libm/complex/catanf.c
index bba0f7730..ac1a65c08 100644
--- a/newlib/libm/complex/catanf.c
+++ b/newlib/libm/complex/catanf.c
@@ -40,8 +40,6 @@
__weak_alias(catanf, _catanf)
#endif
-#define MAXNUMF 1.0e38F
-
float complex
catanf(float complex z)
{
@@ -76,6 +74,6 @@ ovrf:
#if 0
mtherr ("catan", OVERFLOW);
#endif
- w = MAXNUMF + MAXNUMF * I;
+ w = HUGE_VALF + HUGE_VALF * I;
return w;
}
diff --git a/newlib/libm/complex/ctan.c b/newlib/libm/complex/ctan.c
index 8a566b66b..fb0db3497 100644
--- a/newlib/libm/complex/ctan.c
+++ b/newlib/libm/complex/ctan.c
@@ -69,8 +69,6 @@ QUICKREF
#include <math.h>
#include "cephes_subr.h"
-#define MAXNUM 1.0e308
-
double complex
ctan(double complex z)
{
@@ -84,7 +82,7 @@ ctan(double complex z)
if (d == 0.0) {
/* mtherr ("ctan", OVERFLOW); */
- w = MAXNUM + MAXNUM * I;
+ w = HUGE_VAL + HUGE_VAL * I;
return w;
}
diff --git a/newlib/libm/complex/ctanf.c b/newlib/libm/complex/ctanf.c
index 746dc6986..a75ff1c66 100644
--- a/newlib/libm/complex/ctanf.c
+++ b/newlib/libm/complex/ctanf.c
@@ -36,8 +36,6 @@
#include <math.h>
#include "cephes_subrf.h"
-#define MAXNUMF 1.0e38f
-
float complex
ctanf(float complex z)
{
@@ -51,7 +49,7 @@ ctanf(float complex z)
if (d == 0.0f) {
/* mtherr ("ctan", OVERFLOW); */
- w = MAXNUMF + MAXNUMF * I;
+ w = HUGE_VALF + HUGE_VALF * I;
return w;
}