about summary refs log tree commit diff
path: root/sysdeps/powerpc/power5+
Commit message (Collapse)AuthorAgeFilesLines
* PowerPC: Fix modf/modff optimization return signAdhemerval Zanella2014-03-082-4/+4
| | | | | | | | | | | | This patch fix the optimized powerpc-fpu modf/modff implementation when using in non-default rounding mode where the zero sign is not as expected. It fixes the libm testsuite tests modf_downward (0) == 0.00000000000000000000e+00 modf_downward (20) == 0.00000000000000000000e+00 modf_downward (21) == 0.00000000000000000000e+00 Where the sign returned was negative.
* Update copyright notices with scripts/update-copyrightsAllan McRae2014-01-012-2/+2
|
* PowerPC: modf optimization fixAdhemerval Zanella2013-04-262-0/+104
This patch fix the 3c0265394d9ffedff2b0de508602dc52e077ce5c commits by correctly setting minimum architecture for modf PPC optimization to power5+ instead of power5 (since only on power5+ round/ceil will be inline to inline assembly).