[libcxx] r278387 - Remove test for the sign of a NaN - doesn't work on MIPS, not strictly legal. Fixes bug 28936
Marshall Clow via cfe-commits
cfe-commits at lists.llvm.org
Thu Aug 11 11:46:24 PDT 2016
Author: marshall
Date: Thu Aug 11 13:46:24 2016
New Revision: 278387
URL: http://llvm.org/viewvc/llvm-project?rev=278387&view=rev
Log:
Remove test for the sign of a NaN - doesn't work on MIPS, not strictly legal. Fixes bug 28936
Modified:
libcxx/trunk/test/std/numerics/complex.number/complex.transcendentals/asin.pass.cpp
Modified: libcxx/trunk/test/std/numerics/complex.number/complex.transcendentals/asin.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/numerics/complex.number/complex.transcendentals/asin.pass.cpp?rev=278387&r1=278386&r2=278387&view=diff
==============================================================================
--- libcxx/trunk/test/std/numerics/complex.number/complex.transcendentals/asin.pass.cpp (original)
+++ libcxx/trunk/test/std/numerics/complex.number/complex.transcendentals/asin.pass.cpp Thu Aug 11 13:46:24 2016
@@ -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()))
{
More information about the cfe-commits
mailing list