*** empty log message ***
authorRichard Stallman <rms@gnu.org>
Wed, 11 Mar 1992 23:27:37 +0000 (23:27 +0000)
committerRichard Stallman <rms@gnu.org>
Wed, 11 Mar 1992 23:27:37 +0000 (23:27 +0000)
From-SVN: r447

gcc/ginclude/math-68881.h

index e51cdf8c51168cfa866609c7e8dcdf862c529d00..4baefa433f06082830b5f086a0e0e91b11014484 100644 (file)
@@ -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));