Fix comment in log1p.c (#4507)

JerryScript-DCO-1.0-Signed-off-by: Yonggang Luo luoyonggang@gmail.com
This commit is contained in:
Yonggang Luo 2021-01-19 04:26:21 +08:00 committed by GitHub
parent 8e83638daa
commit cb85797ab5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -121,7 +121,7 @@ log1p (double x)
/* x <= -1.0 */
if (x == -1.0)
{
/* log1p(-1) = +inf */
/* log1p(-1) = -inf */
return -two54 / zero;
}
else