xiaoxiang781216 commented on code in PR #7025: URL: https://github.com/apache/incubator-nuttx/pull/7025#discussion_r964332497
########## libs/libc/math/lib_roundl.c: ########## @@ -34,6 +34,9 @@ #ifdef CONFIG_HAVE_LONG_DOUBLE long double roundl(long double x) { + if (isinf(x) || isnan(x)) Review Comment: should we add a new one like other libc: https://man7.org/linux/man-pages/man3/finite.3.html -- 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