Skip to content

Commit 3f11a3c

Browse files
committed
Fix typo in comments
1 parent 92629d8 commit 3f11a3c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

libc/src/math/generic/exp10m1f16.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,18 +42,18 @@ static constexpr size_t N_EXP10M1F16_EXCEPTS_HI = 6;
4242
static constexpr fputil::ExceptValues<float16, N_EXP10M1F16_EXCEPTS_HI>
4343
EXP10M1F16_EXCEPTS_HI = {{
4444
// (input, RZ output, RU offset, RD offset, RN offset)
45-
// x = 0x1.8f4p-2, exp10mf16(x) = 0x1.744p+0 (RZ)
45+
// x = 0x1.8f4p-2, exp10m1f16(x) = 0x1.744p+0 (RZ)
4646
{0x363dU, 0x3dd1U, 1U, 0U, 0U},
47-
// x = 0x1.95cp-2, exp10mf16(x) = 0x1.7d8p+0 (RZ)
47+
// x = 0x1.95cp-2, exp10m1f16(x) = 0x1.7d8p+0 (RZ)
4848
{0x3657U, 0x3df6U, 1U, 0U, 0U},
49-
// x = 0x1.d04p-2, exp10mf16(x) = 0x1.d7p+0 (RZ)
49+
// x = 0x1.d04p-2, exp10m1f16(x) = 0x1.d7p+0 (RZ)
5050
{0x3741U, 0x3f5cU, 1U, 0U, 1U},
5151
#ifndef LIBC_TARGET_CPU_HAS_FMA
52-
// x = 0x1.0cp+1, exp10mf16(x) = 0x1.ec4p+6 (RZ)
52+
// x = 0x1.0cp+1, exp10m1f16(x) = 0x1.ec4p+6 (RZ)
5353
{0x4030U, 0x57b1U, 1U, 0U, 1U},
54-
// x = 0x1.1b8p+1, exp10mf16(x) = 0x1.45cp+7 (RZ)
54+
// x = 0x1.1b8p+1, exp10m1f16(x) = 0x1.45cp+7 (RZ)
5555
{0x406eU, 0x5917U, 1U, 0U, 1U},
56-
// x = 0x1.2f4p+2, exp10mf16(x) = 0x1.ab8p+15 (RZ)
56+
// x = 0x1.2f4p+2, exp10m1f16(x) = 0x1.ab8p+15 (RZ)
5757
{0x44bdU, 0x7aaeU, 1U, 0U, 1U},
5858
#endif
5959
}};

0 commit comments

Comments
 (0)