Skip to content

Commit 0e904c9

Browse files
committed
remove debugging code
1 parent 6b9534f commit 0e904c9

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

libc/test/src/math/asinpif16_test.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,13 @@ TEST_F(LlvmLibcAsinpif16Test, PositiveRange) {
2828
float16 x = FPBits(v).get_val();
2929
EXPECT_MPFR_MATCH_ALL_ROUNDING(mpfr::Operation::Asinpi, x,
3030
LIBC_NAMESPACE::asinpif16(x), 0.5);
31-
break;
3231
}
3332
}
3433

3534
TEST_F(LlvmLibcAsinpif16Test, NegativeRange) {
36-
int i = 0;
3735
for (uint16_t v = NEG_START; v <= NEG_STOP; ++v) {
3836
float16 x = FPBits(v).get_val();
3937
EXPECT_MPFR_MATCH_ALL_ROUNDING(mpfr::Operation::Asinpi, -x,
4038
LIBC_NAMESPACE::asinpif16(-x), 0.5);
41-
if (i++ == 10)
42-
break;
4339
}
4440
}

0 commit comments

Comments
 (0)