Revert "[NFC][msan] Fix warning on sanitizer-ppc64le-linux bot"

This fix breaks the test.

This reverts commit 6a2807bc81.
This commit is contained in:
Vitaly Buka 2021-06-02 00:01:36 -07:00
parent 2f2b5b7d28
commit 2445838f74
1 changed files with 0 additions and 3 deletions

View File

@ -1875,21 +1875,18 @@ TEST_STRTO_FLOAT_LOC(__wcstold_l, wchar_t, L)
TEST(MemorySanitizer, modf) {
double x, y;
x = modf(2.1, &y);
EXPECT_NOT_POISONED(x);
EXPECT_NOT_POISONED(y);
}
TEST(MemorySanitizer, modff) {
float x, y;
x = modff(2.1, &y);
EXPECT_NOT_POISONED(x);
EXPECT_NOT_POISONED(y);
}
TEST(MemorySanitizer, modfl) {
long double x, y;
x = modfl(2.1, &y);
EXPECT_NOT_POISONED(x);
EXPECT_NOT_POISONED(y);
}