diff options
author | Hans Wennborg <hans@hanshq.net> | 2016-08-11 21:47:28 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2016-08-11 21:47:28 +0000 |
commit | eb6343e251ce6cfece7ae4e82f4282ea1e21a3ff (patch) | |
tree | 4583a722394c34bb9954c163ef29a7b43837cea1 /libcxx | |
parent | 6ea7621321b1dceecb7bcf1bac3362d07fdccb9b (diff) | |
download | llvm-eb6343e251ce6cfece7ae4e82f4282ea1e21a3ff.zip llvm-eb6343e251ce6cfece7ae4e82f4282ea1e21a3ff.tar.gz llvm-eb6343e251ce6cfece7ae4e82f4282ea1e21a3ff.tar.bz2 |
Merging r278387:
------------------------------------------------------------------------
r278387 | marshall | 2016-08-11 11:46:24 -0700 (Thu, 11 Aug 2016) | 1 line
Remove test for the sign of a NaN - doesn't work on MIPS, not strictly legal. Fixes bug 28936
------------------------------------------------------------------------
llvm-svn: 278425
Diffstat (limited to 'libcxx')
-rw-r--r-- | libcxx/test/std/numerics/complex.number/complex.transcendentals/asin.pass.cpp | 1 |
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 cf6f786..2b21309 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())) { |