978e96
commit 8311c83f91a3127ccd2fe684e25bc60c5178d23b
978e96
Author: Florian Weimer <fweimer@redhat.com>
978e96
Date:   Thu Feb 7 09:03:02 2019 +0100
978e96
978e96
    array_length: Make usable as a constant expression
978e96
    
978e96
    Do not use a statement expression in array_length, so that
978e96
    array_length can be used at file scope and as a constant expression.
978e96
    Instead, put the _Static_assert into a struct (as a declaration),
978e96
    and nest this in the expression using a sizeof expression.
978e96
978e96
diff --git a/include/array_length.h b/include/array_length.h
978e96
index cb4a8b2a56bca3ad..ccb253c1dc1641cf 100644
978e96
--- a/include/array_length.h
978e96
+++ b/include/array_length.h
978e96
@@ -22,12 +22,12 @@
978e96
 /* array_length (VAR) is the number of elements in the array VAR.  VAR
978e96
    must evaluate to an array, not a pointer.  */
978e96
 #define array_length(var)                                               \
978e96
-  __extension__ ({                                                      \
978e96
-    _Static_assert (!__builtin_types_compatible_p                       \
978e96
-                    (__typeof (var), __typeof (&(var)[0])),             \
978e96
-                    "argument must be an array");                       \
978e96
-    sizeof (var) / sizeof ((var)[0]);                                   \
978e96
-  })
978e96
+  (sizeof (var) / sizeof ((var)[0])                                     \
978e96
+   + 0 * sizeof (struct {                                               \
978e96
+       _Static_assert (!__builtin_types_compatible_p                    \
978e96
+                       (__typeof (var), __typeof (&(var)[0])),          \
978e96
+                       "argument must be an array");                    \
978e96
+   }))
978e96
 
978e96
 /* array_end (VAR) is a pointer one past the end of the array VAR.
978e96
    VAR must evaluate to an array, not a pointer.  */