zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit d40857c7473f24103ca29233997d972c2bede7b7 (tree)
parent 8bf2f80cf17cfab92315316882ba1aa3101ee379
Author: Christophe Delage <christ@ophe.net>
Date:   Thu, 28 May 2026 20:06:16 +0200

Fix article reference

Diffstat:
Mlib/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 @@ -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. ///