about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>2024-01-04 10:29:09 -0300
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>2024-04-17 16:12:41 -0300
commit1b803c315f36042a3e6191692eca40800210aa16 (patch)
treef2a7b53842715edea32e8f0f8aede5a938b78a5d
parent3a8f2d8706711b287267bff14e20de251d93a1b6 (diff)
downloadglibc-1b803c315f36042a3e6191692eca40800210aa16.tar.gz
glibc-1b803c315f36042a3e6191692eca40800210aa16.tar.xz
glibc-1b803c315f36042a3e6191692eca40800210aa16.zip
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).
-rw-r--r--math/test-fesetexcept-traps.c10
-rw-r--r--math/test-fexcept-traps.c10
2 files changed, 14 insertions, 6 deletions
diff --git a/math/test-fesetexcept-traps.c b/math/test-fesetexcept-traps.c
index 73f542027e..3aff7073e4 100644
--- a/math/test-fesetexcept-traps.c
+++ b/math/test-fesetexcept-traps.c
@@ -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);
diff --git a/math/test-fexcept-traps.c b/math/test-fexcept-traps.c
index 0f5802c773..83053b074d 100644
--- a/math/test-fexcept-traps.c
+++ b/math/test-fexcept-traps.c
@@ -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);