summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarshall Clow <mclow.lists@gmail.com>2016-08-11 18:46:24 +0000
committerMarshall Clow <mclow.lists@gmail.com>2016-08-11 18:46:24 +0000
commit82b16766e65a211f4e93dd973aff4b343fa158db (patch)
tree14bd3add6bbc9ca1f604351b48535b99d82e77dd
parentd9e0f71195e254012221666f536a247dbefa599b (diff)
downloadbcm5719-llvm-82b16766e65a211f4e93dd973aff4b343fa158db.tar.gz
bcm5719-llvm-82b16766e65a211f4e93dd973aff4b343fa158db.zip
Remove test for the sign of a NaN - doesn't work on MIPS, not strictly legal. Fixes bug 28936
llvm-svn: 278387
-rw-r--r--libcxx/test/std/numerics/complex.number/complex.transcendentals/asin.pass.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/libcxx/test/std/numerics/complex.number/complex.transcendentals/asin.pass.cpp b/libcxx/test/std/numerics/complex.number/complex.transcendentals/asin.pass.cpp
index cf6f7869bd1..2b213094df2 100644
--- a/libcxx/test/std/numerics/complex.number/complex.transcendentals/asin.pass.cpp
+++ b/libcxx/test/std/numerics/complex.number/complex.transcendentals/asin.pass.cpp
@@ -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()))
{
OpenPOWER on IntegriCloud