Remove test for the sign of a NaN - doesn't work on MIPS, not strictly legal. Fixes bug 28936

llvm-svn: 278387
This commit is contained in:
Marshall Clow 2016-08-11 18:46:24 +00:00
parent d9e0f71195
commit 82b16766e6
1 changed files with 0 additions and 1 deletions

View 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()))
{