From: Szabolcs Nagy Date: Tue, 13 Nov 2012 09:55:35 +0000 (+0100) Subject: math: excess precision fix modf, modff, scalbn, scalbnf X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=c4359e01303da2755fe7e8033826b132eb3659b1;hp=c4359e01303da2755fe7e8033826b132eb3659b1 math: excess precision fix modf, modff, scalbn, scalbnf old code was correct only if the result was stored (without the excess precision) or musl was compiled with -ffloat-store. now we use STRICT_ASSIGN to work around the issue. (see note 160 in c11 section 6.8.6.4) ---