summaryrefslogtreecommitdiff
path: root/src/math/i386/hypot.s
AgeCommit message (Collapse)AuthorLines
2012-03-23asm for hypot and hypotfRich Felker-0/+45
special care is made to avoid any inexact computations when either arg is zero (in which case the exact absolute value of the other arg should be returned) and to support the special condition that hypot(±inf,nan) yields inf. hypotl is not yet implemented since avoiding overflow is nontrivial.