OSDN Git Service

*** empty log message ***
[pf3gnuchains/gcc-fork.git] / gcc / ginclude / math-68881.h
index e51cdf8..4baefa4 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));