mirror of git://sourceware.org/git/glibc.git
math: Remove _Static_assert that uses EXCEPTION_SET_FORCES_TRAP
And make them a runtime check with assert since EXCEPTION_SET_FORCES_TRAP might not be an integral constant expression (i.e on i386).
This commit is contained in:
parent
195eaa59ae
commit
7b61bedea9
|
@ -46,9 +46,13 @@ do_test (void)
|
|||
Also check if the function does not alter the exception mask. */
|
||||
ret = fesetexcept (FE_ALL_EXCEPT);
|
||||
|
||||
_Static_assert (!(EXCEPTION_SET_FORCES_TRAP && !EXCEPTION_TESTS(float)),
|
||||
"EXCEPTION_SET_FORCES_TRAP only makes sense if the "
|
||||
"architecture suports exceptions");
|
||||
if (EXCEPTION_SET_FORCES_TRAP && !EXCEPTION_TESTS(float))
|
||||
{
|
||||
puts ("EXCEPTION_SET_FORCES_TRAP only makes sense if the architecture "
|
||||
"suports exceptions");
|
||||
return 77;
|
||||
}
|
||||
|
||||
{
|
||||
int exc_before = fegetexcept ();
|
||||
ret = fesetexcept (FE_ALL_EXCEPT);
|
||||
|
|
|
@ -70,9 +70,13 @@ do_test (void)
|
|||
Also check if the function does not alter the exception mask. */
|
||||
ret = fesetexceptflag (&saved, FE_ALL_EXCEPT);
|
||||
|
||||
_Static_assert (!(EXCEPTION_SET_FORCES_TRAP && !EXCEPTION_TESTS(float)),
|
||||
"EXCEPTION_SET_FORCES_TRAP only makes sense if the "
|
||||
"architecture suports exceptions");
|
||||
if (EXCEPTION_SET_FORCES_TRAP && !EXCEPTION_TESTS(float))
|
||||
{
|
||||
puts ("EXCEPTION_SET_FORCES_TRAP only makes sense if the architecture "
|
||||
"suports exceptions");
|
||||
return 77;
|
||||
}
|
||||
|
||||
{
|
||||
int exc_before = fegetexcept ();
|
||||
ret = fesetexceptflag (&saved, FE_ALL_EXCEPT);
|
||||
|
|
Loading…
Reference in New Issue