| ... | @@ -437,10 +437,10 @@ pub fn __logx(a: f80) callconv(.c) f80 { | ... | @@ -437,10 +437,10 @@ pub fn __logx(a: f80) callconv(.c) f80 { |
| 437 | return @floatCast(logq(a)); | 437 | return @floatCast(logq(a)); |
| 438 | } | 438 | } |
| 439 | | 439 | |
| 440 | /// Implementation of "Table-driven implementation of the exponential function in IEEE floating-point arithmetic" | 440 | /// Implementation of "Table-driven implementation of the logarithm function in IEEE floating-point arithmetic" |
| 441 | /// By PTP Tang in ACM Transactions on Mathematical Software (TOMS), 1989 | 441 | /// by PTP Tang in ACM Transactions on Mathematical Software (TOMS), 1990 |
| 442 | /// | 442 | /// |
| 443 | /// https://dl.acm.org/doi/pdf/10.1145/63522.214389 | 443 | /// https://dl.acm.org/doi/pdf/10.1145/98267.98294 |
| 444 | /// | 444 | /// |
| 445 | /// Adapted to work for f128 by Christophe Delage. | 445 | /// Adapted to work for f128 by Christophe Delage. |
| 446 | /// | 446 | /// |