about summary refs log tree commit diff
path: root/src/math/i386/hypotf.s
Commit message (Collapse)AuthorAgeFilesLines
* asm for hypot and hypotfRich Felker2012-03-231-0/+42
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.