From: Richard Stallman Date: Wed, 11 Mar 1992 23:27:37 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: misc/cutover-egcs-0~13484 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9ce2457e22d14ffeece57eb68cfbd0e7038a08a5;p=thirdparty%2Fgcc.git *** empty log message *** From-SVN: r447 --- diff --git a/gcc/ginclude/math-68881.h b/gcc/ginclude/math-68881.h index e51cdf8c5116..4baefa433f06 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));