Fixed test failure in is_iec559.pass.cpp on darwin-ppc32. Thanks to David Fang for the report (and suggested fix)

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@199694 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Marshall Clow 2014-01-20 23:57:16 +00:00
parent e3c9d52d6d
commit 1a383b9755

View File

@ -45,4 +45,9 @@ int main()
test<float, true>();
test<double, true>();
test<long double, true>();
#if (defined(__ppc__) || defined(__ppc64__))
test<long double, false>();
#else
test<long double, true>();
#endif
}