[all-commits] [llvm/llvm-project] 1f9678: [libc][math] Fix range and comments in exhaustive ...
Tejas Vipin via All-commits
all-commits at lists.llvm.org
Mon Mar 24 09:32:32 PDT 2025
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: 1f967887018c63bddf5bf2860e0e6a3aa1e85840
https://github.com/llvm/llvm-project/commit/1f967887018c63bddf5bf2860e0e6a3aa1e85840
Author: Tejas Vipin <alissxlace at proton.me>
Date: 2025-03-24 (Mon, 24 Mar 2025)
Changed paths:
M libc/test/src/math/exhaustive/hypotf_test.cpp
Log Message:
-----------
[libc][math] Fix range and comments in exhaustive hypotf_test (#131769)
`((23U + 127U) << 23) + 1` evaluates to `(2^23)+1` as opposed to `2^24`,
so should instead be `(24U + 127U) << 23`. Additionally, range for both
inputs is inclusive of STOP. The comments have been updated reflecting
these changes.
To unsubscribe from these emails, change your notification settings at https://github.com/llvm/llvm-project/settings/notifications
More information about the All-commits
mailing list