Skip to content

Commit 05574e8

Browse files
committed
[MathExtras] Fix typos in hex fp constant values. NFC.
1 parent e33f456 commit 05574e8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/include/llvm/Support/MathExtras.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ using common_sint =
4444
namespace numbers {
4545
// TODO: Track C++20 std::numbers.
4646
// TODO: Favor using the hexadecimal FP constants (requires C++17).
47-
constexpr double e = 2.7182818284590452354, // (0x1.5bf0a8b145749P+1) https://oeis.org/A001113
47+
constexpr double e = 2.7182818284590452354, // (0x1.5bf0a8b145769P+1) https://oeis.org/A001113
4848
egamma = .57721566490153286061, // (0x1.2788cfc6fb619P-1) https://oeis.org/A001620
4949
ln2 = .69314718055994530942, // (0x1.62e42fefa39efP-1) https://oeis.org/A002162
50-
ln10 = 2.3025850929940456840, // (0x1.24bb1bbb55516P+1) https://oeis.org/A002392
50+
ln10 = 2.3025850929940456840, // (0x1.26bb1bbb55516P+1) https://oeis.org/A002392
5151
log2e = 1.4426950408889634074, // (0x1.71547652b82feP+0)
5252
log10e = .43429448190325182765, // (0x1.bcb7b1526e50eP-2)
5353
pi = 3.1415926535897932385, // (0x1.921fb54442d18P+1) https://oeis.org/A000796
54-
inv_pi = .31830988618379067154, // (0x1.45f306bc9c883P-2) https://oeis.org/A049541
54+
inv_pi = .31830988618379067154, // (0x1.45f306dc9c883P-2) https://oeis.org/A049541
5555
sqrtpi = 1.7724538509055160273, // (0x1.c5bf891b4ef6bP+0) https://oeis.org/A002161
5656
inv_sqrtpi = .56418958354775628695, // (0x1.20dd750429b6dP-1) https://oeis.org/A087197
5757
sqrt2 = 1.4142135623730950488, // (0x1.6a09e667f3bcdP+0) https://oeis.org/A00219

0 commit comments

Comments
 (0)