]> sourceware.org Git - newlib-cygwin.git/commit
stdio: Fix issue of printing "%La" format with large exp part.
authorTakashi Yano <takashi.yano@nifty.ne.jp>
Mon, 29 Nov 2021 12:56:46 +0000 (21:56 +0900)
committerTakashi Yano <takashi.yano@nifty.ne.jp>
Mon, 29 Nov 2021 13:51:16 +0000 (22:51 +0900)
commit48f6c59332ee2970cd4b172278176dcfe32a328d
tree958c95110c5543b1e8f04b9b662fc21b4dcf706d
parent3502a6ff2e2740afb6cce71a95c715e80edadff5
stdio: Fix issue of printing "%La" format with large exp part.

- Currently, printf("%La\n", 1e1000L) crashes with segv due to lack
  of frexpl() function. With this patch, frexpl() function has been
  implemented in libm to solve this issue.

Addresses: https://sourceware.org/pipermail/newlib/2021/018718.html
newlib/Makefile.am
newlib/Makefile.in
newlib/libc/include/math.h
newlib/libc/stdio/vfprintf.c
newlib/libc/stdio/vfwprintf.c
newlib/libm/common/frexpl.c
This page took 0.030053 seconds and 5 git commands to generate.