Skip to content

Commit 81c5cf7

Browse files
committed
[libc][math] Update for comments again.
1 parent c092cad commit 81c5cf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/test/src/math/atanhf16_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ static constexpr uint16_t NEG_START = 0x8000U;
2424
static constexpr uint16_t NEG_STOP = 0xFC00U;
2525

2626
TEST_F(LlvmLibcAtanhf16Test, PositiveRange) {
27-
for (uint16_t v = POS_START; v < POS_STOP; ++v) {
27+
for (uint16_t v = POS_START; v <= POS_STOP; ++v) {
2828
float16 x = FPBits(v).get_val();
2929
EXPECT_MPFR_MATCH_ALL_ROUNDING(mpfr::Operation::Atanh, x,
3030
LIBC_NAMESPACE::atanhf16(x), 0.5);

0 commit comments

Comments
 (0)