NetBSD-Bugs archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: port-mips/57680: printf("%.1f") shows wrong resultsonR3000mipseb



The following reply was made to PR port-mips/57680; it has been noted by GNATS.

From: Izumi Tsutsui <tsutsui%ceres.dti.ne.jp@localhost>
To: riastradh%NetBSD.org@localhost
Cc: gnats-bugs%netbsd.org@localhost, tsutsui%ceres.dti.ne.jp@localhost
Subject: Re: port-mips/57680: printf("%.1f") shows wrong resultsonR3000mipseb
Date: Tue, 7 Nov 2023 02:59:54 +0900

 > And a couple more things that might help:
 > 
 > nm /lib/libc.a \
 > | awk '
 > 	/:$/		{ file = $1; next }
 > 	/f.getround/	{ if (file) print file; file = 0; print }
 > '
 
 (maybe it should be /usr/lib/libc.a)
 ---
 $ nm /usr/lib/libc.a \
 | awk '
         /:$/            { file = $1; next }
         /f.getround/    { if (file) print file; file = 0; print }
 '
 fpgetround.o:
 00000000 T _fpgetround
 00000000 W fpgetround
 ---
 
 > nm /lib/libm.a \
 > | awk '
 > 	/:$/		{ file = $1; next }
 > 	/f.getround/	{ if (file) print file; file = 0; print }
 > '
 
 ---
 $ nm /usr/lib/libm.a \
 | awk '
         /:$/            { file = $1; next }
         /f.getround/    { if (file) print file; file = 0; print }
 '
 fenv.o:
 00000084 T _fegetround
 00000084 W fegetround
 ---
 Izumi Tsutsui
 


Home | Main Index | Thread Index | Old Index