[libcxx] r278425 - Merging r278387:

Hans Wennborg via cfe-commits cfe-commits at lists.llvm.org
Thu Aug 11 14:47:28 PDT 2016


Author: hans
Date: Thu Aug 11 16:47:28 2016
New Revision: 278425

URL: http://llvm.org/viewvc/llvm-project?rev=278425&view=rev
Log:
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
------------------------------------------------------------------------

Modified:
    libcxx/branches/release_39/   (props changed)
    libcxx/branches/release_39/test/std/numerics/complex.number/complex.transcendentals/asin.pass.cpp

Propchange: libcxx/branches/release_39/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Thu Aug 11 16:47:28 2016
@@ -1 +1,2 @@
 /libcxx/branches/apple:136569-137939
+/libcxx/trunk:278387

Modified: libcxx/branches/release_39/test/std/numerics/complex.number/complex.transcendentals/asin.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/branches/release_39/test/std/numerics/complex.number/complex.transcendentals/asin.pass.cpp?rev=278425&r1=278424&r2=278425&view=diff
==============================================================================
--- libcxx/branches/release_39/test/std/numerics/complex.number/complex.transcendentals/asin.pass.cpp (original)
+++ libcxx/branches/release_39/test/std/numerics/complex.number/complex.transcendentals/asin.pass.cpp Thu Aug 11 16:47:28 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