forked from OSchip/llvm-project
Revert "[NFC][msan] Fix warning on sanitizer-ppc64le-linux bot"
This fix breaks the test.
This reverts commit 6a2807bc81
.
This commit is contained in:
parent
2f2b5b7d28
commit
2445838f74
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue