Skip to content

Commit d97c224

Browse files
authored
[libc][NFC]: Correct some comments about SDCOMP-26094. (#149317)
1 parent 7caf12d commit d97c224

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

libc/test/src/math/cospif_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ TEST_F(LlvmLibcCospifTest, SmallValues) {
100100
LIBC_NAMESPACE::cospif(x), 0.5);
101101
}
102102

103-
// SDCOMP-26094: check sinfpi in the cases for which the range reducer
103+
// SDCOMP-26094: check cospif in the cases for which the range reducer
104104
// returns values furthest beyond its nominal upper bound of pi/4.
105105
TEST_F(LlvmLibcCospifTest, SDCOMP_26094) {
106106
for (uint32_t v : SDCOMP26094_VALUES) {

libc/test/src/math/sincosf_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ TEST_F(LlvmLibcSinCosfTest, SpecialValues) {
164164
}
165165
}
166166

167-
// SDCOMP-26094: check sinf in the cases for which the range reducer
167+
// SDCOMP-26094: check sincosf in the cases for which the range reducer
168168
// returns values furthest beyond its nominal upper bound of pi/4.
169169
TEST_F(LlvmLibcSinCosfTest, SDCOMP_26094) {
170170
for (uint32_t v : SDCOMP26094_VALUES) {

libc/test/src/math/sinpif_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ TEST_F(LlvmLibcSinpifTest, SmallValues) {
100100
LIBC_NAMESPACE::sinpif(x), 0.5);
101101
}
102102

103-
// SDCOMP-26094: check sinfpi in the cases for which the range reducer
103+
// SDCOMP-26094: check sinpif in the cases for which the range reducer
104104
// returns values furthest beyond its nominal upper bound of pi/4.
105105
TEST_F(LlvmLibcSinpifTest, SDCOMP_26094) {
106106
for (uint32_t v : SDCOMP26094_VALUES) {

0 commit comments

Comments
 (0)