From 9ce2457e22d14ffeece57eb68cfbd0e7038a08a5 Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Wed, 11 Mar 1992 23:27:37 +0000 Subject: [PATCH] *** empty log message *** From-SVN: r447 --- gcc/ginclude/math-68881.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/ginclude/math-68881.h b/gcc/ginclude/math-68881.h index e51cdf8c511..4baefa433f0 100644 --- a/gcc/ginclude/math-68881.h +++ b/gcc/ginclude/math-68881.h @@ -282,7 +282,7 @@ __inline static const double pow (const double x, const double y) double value; errno = EDOM; - __asm ("fmove%.d %#07fffffffffffffff,%0" /* quiet NaN */ + __asm ("fmove%.d %#0x7fffffffffffffff,%0" /* quiet NaN */ : "=f" (value) : /* no inputs */); return value; @@ -299,7 +299,7 @@ __inline static const double pow (const double x, const double y) { int i = (int) y; - if (i & 1 == 0) /* even */ + if ((i & 1) == 0) /* even */ return exp (y * log (-x)); else return - exp (y * log (-x)); -- 2.30.2