Warning fixes for jerry-libm
JerryScript-DCO-1.0-Signed-off-by: László Langó llango.u-szeged@partner.samsung.com
This commit is contained in:
+1
-1
@@ -79,7 +79,7 @@ atan2 (double y, double x)
|
||||
{
|
||||
return x + y;
|
||||
}
|
||||
if ((hx - 0x3ff00000 | lx) == 0) /* x = 1.0 */
|
||||
if (((hx - 0x3ff00000) | lx) == 0) /* x = 1.0 */
|
||||
{
|
||||
return atan (y);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user