pkarashchenko commented on code in PR #7025: URL: https://github.com/apache/incubator-nuttx/pull/7025#discussion_r964462138
########## libs/libc/math/lib_round.c: ########## @@ -34,6 +34,11 @@ #ifdef CONFIG_HAVE_DOUBLE double round(double x) { + if (isinf(x) || isnan(x)) + { + return (x); Review Comment: ```suggestion return x; ``` ########## libs/libc/math/lib_roundl.c: ########## @@ -34,6 +34,11 @@ #ifdef CONFIG_HAVE_LONG_DOUBLE long double roundl(long double x) { + if (isinf_l(x) || isnan(x)) + { + return (x); + } + long double f = modfl(x, &x); Review Comment: ditto ########## libs/libc/math/lib_round.c: ########## @@ -34,6 +34,11 @@ #ifdef CONFIG_HAVE_DOUBLE double round(double x) { + if (isinf(x) || isnan(x)) + { + return (x); + } + double f = modf(x, &x); Review Comment: Please separate this. Move `double f;` before `if (isinf(x) || isnan(x))` abd change here to `f = modf(x, &x);` ########## libs/libc/math/lib_roundl.c: ########## @@ -34,6 +34,11 @@ #ifdef CONFIG_HAVE_LONG_DOUBLE long double roundl(long double x) { + if (isinf_l(x) || isnan(x)) + { + return (x); Review Comment: ```suggestion return x; ``` ########## libs/libc/math/lib_roundf.c: ########## @@ -33,6 +33,11 @@ float roundf(float x) { + if (isinf_f(x) || isnan(x)) + { + return (x); + } + float f = modff(x, &x); Review Comment: ditto ########## libs/libc/math/lib_roundf.c: ########## @@ -33,6 +33,11 @@ float roundf(float x) { + if (isinf_f(x) || isnan(x)) + { + return (x); Review Comment: ```suggestion return x; ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org