Revert "[NFC][msan] Fix warning on sanitizer-ppc64le-linux bot"
authorVitaly Buka <vitalybuka@google.com>
Wed, 2 Jun 2021 07:01:36 +0000 (00:01 -0700)
committerVitaly Buka <vitalybuka@google.com>
Wed, 2 Jun 2021 07:09:02 +0000 (00:09 -0700)
This fix breaks the test.

This reverts commit 6a2807bc81771d3fed397378507ecab40f8bff27.

compiler-rt/lib/msan/tests/msan_test.cpp

index 0ad91fb..b382f38 100644 (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);
 }