diff options
Diffstat (limited to 'gcc/ginclude')
-rw-r--r-- | gcc/ginclude/math-3300.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ginclude/math-3300.h b/gcc/ginclude/math-3300.h index 4e701257995..5d7ba28f67f 100644 --- a/gcc/ginclude/math-3300.h +++ b/gcc/ginclude/math-3300.h @@ -278,7 +278,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)); |