linuxOS_AP05/buildroot/package/glibc/2.29-11-ge28ad442e73b00ae2047d89c8cc7f9b2a0de5436/0001-array_length-Make-usable-as-a-constant-expression.patch

43 lines
1.9 KiB
Diff
Raw Permalink Normal View History

2025-06-02 05:59:07 +00:00
From 4423ab8fb4650cd0e4906b337ff21ef284893434 Mon Sep 17 00:00:00 2001
From: Florian Weimer <fweimer@redhat.com>
Date: Thu, 7 Feb 2019 09:03:02 +0100
Subject: [PATCH 01/19] array_length: Make usable as a constant expression
Do not use a statement expression in array_length, so that
array_length can be used at file scope and as a constant expression.
Instead, put the _Static_assert into a struct (as a declaration),
and nest this in the expression using a sizeof expression.
(cherry picked from commit 8311c83f91a3127ccd2fe684e25bc60c5178d23b)
Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
---
include/array_length.h | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/include/array_length.h b/include/array_length.h
index 65f58306..db98a698 100644
--- a/include/array_length.h
+++ b/include/array_length.h
@@ -22,12 +22,12 @@
/* array_length (VAR) is the number of elements in the array VAR. VAR
must evaluate to an array, not a pointer. */
#define array_length(var) \
- __extension__ ({ \
- _Static_assert (!__builtin_types_compatible_p \
- (__typeof (var), __typeof (&(var)[0])), \
- "argument must be an array"); \
- sizeof (var) / sizeof ((var)[0]); \
- })
+ (sizeof (var) / sizeof ((var)[0]) \
+ + 0 * sizeof (struct { \
+ _Static_assert (!__builtin_types_compatible_p \
+ (__typeof (var), __typeof (&(var)[0])), \
+ "argument must be an array"); \
+ }))
/* array_end (VAR) is a pointer one past the end of the array VAR.
VAR must evaluate to an array, not a pointer. */
--
2.20.1