From d40857c7473f24103ca29233997d972c2bede7b7 Mon Sep 17 00:00:00 2001 From: Christophe Delage Date: Thu, 28 May 2026 20:06:16 +0200 Subject: [PATCH] Fix article reference --- lib/compiler_rt/log.zig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/compiler_rt/log.zig b/lib/compiler_rt/log.zig index 7af72a37daecddd5110a9ea6b745dc0207f84d9c..9f13f01f83d168845c28997a2299f61b4567caa7 100644 --- a/lib/compiler_rt/log.zig +++ b/lib/compiler_rt/log.zig @@ -437,10 +437,10 @@ pub fn __logx(a: f80) callconv(.c) f80 { return @floatCast(logq(a)); } -/// Implementation of "Table-driven implementation of the exponential function in IEEE floating-point arithmetic" -/// By PTP Tang in ACM Transactions on Mathematical Software (TOMS), 1989 +/// Implementation of "Table-driven implementation of the logarithm function in IEEE floating-point arithmetic" +/// by PTP Tang in ACM Transactions on Mathematical Software (TOMS), 1990 /// -/// https://dl.acm.org/doi/pdf/10.1145/63522.214389 +/// https://dl.acm.org/doi/pdf/10.1145/98267.98294 /// /// Adapted to work for f128 by Christophe Delage. /// -- 2.54.0