Turned off 128 bit float for Embarcadero and updated 128 float test.

This commit is contained in:
Edward Diener
2020-04-11 15:00:14 -04:00
parent 2dcb3f09c0
commit 869cc06e30
2 changed files with 7 additions and 0 deletions

View File

@ -31,6 +31,9 @@
#if defined(BOOST_HAS_INT128)
#undef BOOST_HAS_INT128
#endif
#if defined(BOOST_HAS_FLOAT128)
#undef BOOST_HAS_FLOAT128
#endif
// 32 functions are missing from the current RTL in cwchar, so it really can not be used even if it exists

View File

@ -22,6 +22,10 @@ int test()
__float128 big_float = 0.0Q;
#endif
(void)&big_float;
__float128 i(2.00), j(1.00), k;
k = i / j;
return 0;
}