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:
parent
e3c9d52d6d
commit
1a383b9755
@ -45,4 +45,9 @@ int main()
|
|||||||
test<float, true>();
|
test<float, true>();
|
||||||
test<double, true>();
|
test<double, true>();
|
||||||
test<long double, true>();
|
test<long double, true>();
|
||||||
|
#if (defined(__ppc__) || defined(__ppc64__))
|
||||||
|
test<long double, false>();
|
||||||
|
#else
|
||||||
|
test<long double, true>();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user