no1wudi opened a new issue, #7620: URL: https://github.com/apache/incubator-nuttx/issues/7620
I've a simple program: ```c int main(int argc, FAR char *argv[]) { double value = +0x1.000000000000080000000000p-600; printf("Hello, World!! %.7g:f64\n", value); return 0; } ``` And this is the output: ```bash ➜ nx qemu-system-arm -semihosting -M sabrelite -m 1024 -smp 4 -nographic -kernel nuttx/nuttx NuttShell (NSH) NuttX-11.0.0 nsh> hello Hello, World!! 2.40992e-B1:f64 ``` The output of value is wrong, correct result is `2.40992e-181`. -- 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.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org