authorgravatar for christ@ophe.netChristophe Delage <christ@ophe.net> 2026-05-28 20:06:16+02:00
committergravatar for christ@ophe.netChristophe Delage <christ@ophe.net> 2026-05-28 20:06:16+02:00
logd40857c7473f24103ca29233997d972c2bede7b7
tree18113e32c9afd5bcf23b299cdc72a3026f9bf664
parent8bf2f80cf17cfab92315316882ba1aa3101ee379

Fix article reference


1 files changed, 3 insertions(+), 3 deletions(-)

lib/compiler_rt/log.zig+3-3
...@@ -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}
439439
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), 1989441/// by PTP Tang in ACM Transactions on Mathematical Software (TOMS), 1990
442///442///
443/// https://dl.acm.org/doi/pdf/10.1145/63522.214389443/// 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///