Remove test for the sign of a NaN - doesn't work on MIPS, not strictly legal. Fixes...
authorMarshall Clow <mclow.lists@gmail.com>
Thu, 11 Aug 2016 18:46:24 +0000 (18:46 +0000)
committerMarshall Clow <mclow.lists@gmail.com>
Thu, 11 Aug 2016 18:46:24 +0000 (18:46 +0000)
llvm-svn: 278387

libcxx/test/std/numerics/complex.number/complex.transcendentals/asin.pass.cpp

index cf6f786..2b21309 100644 (file)
@@ -91,7 +91,6 @@ void test_edges()
         {
             assert(std::isnan(r.real()));
             assert(std::isnan(r.imag()));
-            assert(std::signbit(testcases[i].imag()) == std::signbit(r.imag()));
         }
         else if (std::isnan(testcases[i].real()) && std::isinf(testcases[i].imag()))
         {