From: David Brown <david.brown@hesbynett.no>
To: Jens Gustedt <jens.gustedt@inria.fr>, Alejandro Colomar <alx@kernel.org>
Cc: Joseph Myers <josmyers@redhat.com>,
gcc-patches@gcc.gnu.org, Martin Uecker <uecker@tugraz.at>,
Xavier Del Campo Romero <xavi.dcr@tutanota.com>,
Gabriel Ravier <gabravier@gmail.com>,
Jakub Jelinek <jakub@redhat.com>,
Kees Cook <keescook@chromium.org>,
Qing Zhao <qing.zhao@oracle.com>,
Florian Weimer <fweimer@redhat.com>,
Andreas Schwab <schwab@linux-m68k.org>
Subject: Re: [PATCH v5 3/3] c: Add __lengthof__ operator
Date: Thu, 8 Aug 2024 19:21:23 +0200 [thread overview]
Message-ID: <b5390845-bd78-4957-a9ba-8c4e789d683b@hesbynett.no> (raw)
In-Reply-To: <E6865ACC-F37F-4EB1-8B2B-C4E66A07120B@inria.fr>
On 08/08/2024 11:13, Jens Gustedt wrote:
> Hi
>
> Am 8. August 2024 10:26:14 MESZ schrieb Alejandro Colomar <alx@kernel.org>:
>> Hello Jens,
>>
>> On Thu, Aug 08, 2024 at 07:35:12AM GMT, Jₑₙₛ Gustedt wrote:
>>> Hello Alejandro,
>>>
>>> On Thu, 8 Aug 2024 00:44:02 +0200, Alejandro Colomar wrote:
>>>
>>>> +Its syntax is similar to @code{sizeof}.
>>>
>>> For my curiosity, do you also make the same distinction that with
>>> expressions you may omit the parenthesis?
>>
>> I thought of it. TBH, I haven't tested that thoroughly.
>>
>> In principle, I have implemented it in the same way as sizeof, yes.
>>
>> Personally, I would have never allowed sizeof without parentheses, but I
>> understand there are people who think the parentheses hurt readability,
>> so I kept it in the same way.
>>
>> I'm not sure why the parentheses are necessary with type names in
>> sizeof,
>
> probably because of operator precedence. there would be no rule that tells us where sizeof ends and we'd switch back from parsing a type to parsing an expression
>
I personally have always found it looks odd that the sizeof operator
does not always need parentheses - I suppose that is because it is a
word, rather than punctuation. To me, it looks more like a function or
function-like macro. And I'd view lengthof in the same light. However,
that's just personal opinion, not a rational argument!
>
>> but to maintain expectations, I think it would be better to do
>> the same here.
>
> Just to compare, the recent additions in C23 typeof etc. only have the parenthesized versions. So there would be precedent. And it really eases transition
>
_Alignof (now "alignof") from C11 always needs parentheses too - but it
always applies to a type, not an expression. (I think it should also be
possible to use it with expressions for consistency, but that's another
matter.)
As I see it, there is a good reason to say that a "lengthof" feature
should always have parentheses. With "typeof" (either as the gcc
extension or the C23 feature), you can come a long way to the
functionality of the proposed "lengthof" (or "__lengthof__") using a
macro. This will mean that if someone writes code using the new feature
in gcc, and another person wants to compile the code with older gcc or a
different compiler, they can use a macro (even "#define lengthof(arr)
(sizeof(arr)/sizeof((arr)[0])", which is less safe but works everywhere)
instead. But that is only true of the person writing the original
"lengthof" code has included the parentheses.
>
>>>
>>> I wouldn't be sure that we should continue that distinction from
>>> `sizeof`.
>>
>> But then, what do we do? Allow lengthof with type names without parens?
>> Or require parens? I'm not comfortable with that choice.
>>
>>> Also that prefix variant would be difficult to wrap in a
>>> `lengthof` macro (without underscores) as we would probably like to
>>> have it in the end.
>>
>> Do you mean that I should add _Lengthof? We're adding __lengthof__ to
>> be a GNU extension with relative freedom from ISO. If I sent a patch
>> adding _Lengthof, we'd have to send a proposal to ISO at the same time,
>> and we'd be waiting for ISO to discuss it before I can merge it. And we
>> couldn't bring prior art to ISO.
>>
>> With this approach instead, the plan is:
>>
>> - Merge __lengthof__ in GCC before ISO hears of it (well, there are
>> already several WG14 members in this discussion, so you have actually
>> heard of it, but we're free to do more or less what we want).
>>
>> - Propose _Lengthof to ISO C, with prior art in GCC as __lengthof__,
>> proposing the same semantics. Also propose a lengthof macro defined
>> in <stdlength.h>
>
> I don't really see why we should take a detour via _Lengthof, I would hope we could directly propose lengthof as the standardization
>
It is traditional for C. It has taken until C23 to get alignof, bool,
etc., as full keywords. I would expect that we would have _Lengthof for
a transitional period while "lengthof" is in "<stdlength.h>" and other
uses of it are deprecated. Changes in C happen slowly if backwards
compatibility is threatened (too slowly for some people, too fast for
others).
>> - When ISO C accepts _Lengthof and lengthof, map _Lengthof in GCC to
>> the same internals as __lengthof__, so they are the same thing.
>>
>> Still, I'm interested in having some feedback from WG14, to prevent
>> implementing something that will have modifications when merged to
>> ISO C, so please CC anyone interested from WG14, if you know of any.
>
> I think that more important would be to have clang on board with this.
>
> In any case, thanks for doing this!
>
> Jens
>
>
next prev parent reply other threads:[~2024-08-08 17:21 UTC|newest]
Thread overview: 248+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-16 12:09 [PATCH v16b 0/4] c: Add __countof__ operator Alejandro Colomar
2024-07-28 14:15 ` [RFC v1 0/2] c: Add _Lengthof operator Alejandro Colomar
2024-07-28 14:15 ` [RFC v1 1/2] Merge definitions of array_type_nelts_top() Alejandro Colomar
2024-07-29 8:27 ` Richard Biener
2024-07-29 8:55 ` Alejandro Colomar
2024-07-29 9:08 ` Richard Biener
2024-07-28 14:16 ` [RFC v1 2/2] c: Add _Lengthof() operator Alejandro Colomar
2024-07-28 14:42 ` [RFC v1 0/2] c: Add _Lengthof operator Martin Uecker
2024-07-28 15:19 ` Alejandro Colomar
2024-07-28 16:48 ` [RFC v2 0/2] c: Add __lengthof__ operator Alejandro Colomar
2024-07-28 16:48 ` [RFC v2 1/2] Merge definitions of array_type_nelts_top() Alejandro Colomar
2024-07-28 16:48 ` [RFC v2 2/2] c: Add __lengthof__() operator Alejandro Colomar
2024-07-29 11:13 ` [RFC v1 0/2] c: Add _Lengthof operator Joseph Myers
2024-08-03 22:59 ` Alejandro Colomar
2024-08-03 23:17 ` [RFC v3 0/3] c: Add __lengthof__ operator Alejandro Colomar
2024-08-03 23:17 ` [RFC v3 1/3] gcc/: Rename array_type_nelts() => array_type_nelts_minus_one() Alejandro Colomar
2024-08-03 23:17 ` [RFC v3 2/3] Merge definitions of array_type_nelts_top() Alejandro Colomar
2024-08-03 23:17 ` [RFC v3 3/3] c: Add __lengthof__() operator Alejandro Colomar
2024-08-04 5:38 ` Martin Uecker
2024-08-04 8:25 ` Alejandro Colomar
2024-08-04 9:39 ` Martin Uecker
2024-08-04 16:40 ` Alejandro Colomar
2024-08-04 16:43 ` Alejandro Colomar
2024-08-04 17:49 ` Alejandro Colomar
2024-08-04 18:02 ` Martin Uecker
2024-08-04 18:34 ` Alejandro Colomar
2024-08-04 19:10 ` Martin Uecker
2024-08-05 9:45 ` Alejandro Colomar
2024-08-05 9:50 ` Jakub Jelinek
2024-08-05 10:33 ` Martin Uecker
2024-08-05 20:10 ` Qing Zhao
2024-08-05 20:41 ` Martin Uecker
2024-08-05 20:59 ` Alejandro Colomar
2024-08-06 15:23 ` Qing Zhao
2024-08-04 17:28 ` Martin Uecker
2024-08-05 11:55 ` Alejandro Colomar
2024-08-05 11:57 ` Alejandro Colomar
2024-08-05 11:58 ` Alejandro Colomar
2024-08-05 11:59 ` Alejandro Colomar
2024-08-05 13:35 ` Martin Uecker
2024-08-05 15:27 ` Alejandro Colomar
2024-08-05 16:05 ` Martin Uecker
2024-08-05 17:47 ` Alejandro Colomar
2024-08-06 12:22 ` [RFC v4 0/4] c: Add __lengthof__ operator Alejandro Colomar
2024-08-06 12:22 ` [RFC v4 1/4] gcc/: Rename array_type_nelts() => array_type_nelts_minus_one() Alejandro Colomar
2024-08-06 12:22 ` [RFC v4 2/4] Merge definitions of array_type_nelts_top() Alejandro Colomar
2024-08-06 12:22 ` [RFC v4 3/4] c: Add __lengthof__() operator (n2529) Alejandro Colomar
2024-08-06 20:15 ` Qing Zhao
2024-08-06 20:38 ` Alejandro Colomar
2024-08-06 20:41 ` Alejandro Colomar
2024-08-06 12:22 ` [RFC v4 4/4] testsuite: Add tests for __lengthof__ Alejandro Colomar
2024-08-06 12:24 ` [RFC v4 0/4] c: Add __lengthof__ operator Alejandro Colomar
2024-08-06 13:37 ` Martin Uecker
2024-08-06 14:12 ` Alejandro Colomar
2024-08-06 14:43 ` Martin Uecker
2024-08-06 15:40 ` Alejandro Colomar
2024-08-06 21:46 ` Alejandro Colomar
2024-08-06 15:59 ` Qing Zhao
2024-08-06 16:48 ` Alejandro Colomar
2024-08-06 17:38 ` Joseph Myers
2024-08-06 20:22 ` Alejandro Colomar
2024-08-06 20:50 ` Joseph Myers
2024-08-06 21:09 ` Alejandro Colomar
2024-08-06 23:11 ` [PATCH v5 0/3] " Alejandro Colomar
2024-08-06 23:12 ` [PATCH v5 1/3] gcc/: Rename array_type_nelts() => array_type_nelts_minus_one() Alejandro Colomar
2024-08-06 23:12 ` [PATCH v5 2/3] Merge definitions of array_type_nelts_top() Alejandro Colomar
2024-08-06 23:12 ` [PATCH v5 3/3] c: Add __lengthof__ operator Alejandro Colomar
2024-08-06 23:14 ` Alejandro Colomar
2024-08-07 7:13 ` Martin Uecker
2024-08-07 9:14 ` Alejandro Colomar
2024-08-07 10:07 ` Martin Uecker
2024-08-07 22:09 ` Alejandro Colomar
2024-08-08 7:39 ` Martin Uecker
2024-08-08 8:42 ` Alejandro Colomar
2024-08-08 9:23 ` Martin Uecker
2024-08-08 9:36 ` Alejandro Colomar
2024-08-07 15:05 ` Joseph Myers
2024-08-07 15:30 ` Jens Gustedt
2024-08-07 22:44 ` Alejandro Colomar
2024-08-08 5:35 ` Jₑₙₛ Gustedt
2024-08-08 8:26 ` Alejandro Colomar
2024-08-08 9:13 ` Jens Gustedt
2024-08-08 9:25 ` Alejandro Colomar
2024-08-08 11:28 ` Joseph Myers
2024-08-08 14:56 ` Jens Gustedt
2024-08-08 15:42 ` Martin Uecker
2024-08-08 15:56 ` Jens Gustedt
2024-08-08 16:08 ` Joseph Myers
2024-08-08 16:23 ` Jens Gustedt
2024-08-08 16:30 ` Martin Uecker
2024-08-08 17:01 ` Alejandro Colomar
2024-08-08 17:31 ` Joseph Myers
2024-08-08 18:04 ` Alejandro Colomar
2024-08-08 18:16 ` Martin Uecker
2024-08-08 18:30 ` Alejandro Colomar
2024-08-08 20:01 ` Alejandro Colomar
2024-08-08 20:36 ` Joseph Myers
2024-08-08 20:56 ` Alejandro Colomar
2024-08-08 22:43 ` Jakub Jelinek
2024-08-08 22:48 ` Jakub Jelinek
2024-08-10 8:57 ` [committed] testsuite: Fix up sse3-addsubps.c Jakub Jelinek
2024-08-12 23:43 ` Alejandro Colomar
2024-08-08 17:21 ` David Brown [this message]
2024-08-08 18:19 ` [PATCH v5 3/3] c: Add __lengthof__ operator Jens Gustedt
2024-08-06 23:25 ` [PATCH v5 0/3] " Alejandro Colomar
2024-08-07 8:11 ` david.brown
[not found] ` <20240807081133.395C7C32782@smtp.kernel.org>
2024-08-07 8:30 ` Alejandro Colomar
2024-08-08 22:41 ` Internal Compiler Error (was: [PATCH v5 0/3] c: Add __lengthof__ operator) Alejandro Colomar
2024-08-09 13:58 ` [PATCH v6 0/3] c: Add __lengthof__ operator Alejandro Colomar
2024-08-09 13:59 ` [PATCH v6 1/3] gcc/: Rename array_type_nelts() => array_type_nelts_minus_one() Alejandro Colomar
2024-08-09 13:59 ` [PATCH v6 2/3] Merge definitions of array_type_nelts_top() Alejandro Colomar
2024-08-09 13:59 ` [PATCH v6 3/3] c: Add __lengthof__ operator Alejandro Colomar
2024-08-09 15:51 ` Alejandro Colomar
2024-08-10 20:54 ` [PATCH v7 0/3] " Alejandro Colomar
2024-08-10 20:54 ` [PATCH v7 1/3] gcc/: Rename array_type_nelts() => array_type_nelts_minus_one() Alejandro Colomar
2024-08-10 20:54 ` [PATCH v7 2/3] Merge definitions of array_type_nelts_top() Alejandro Colomar
2024-08-10 20:54 ` [PATCH v7 3/3] c: Add __lengthof__ operator Alejandro Colomar
2024-08-11 23:46 ` [PATCH v8 0/3] " Alejandro Colomar
2024-08-11 23:46 ` [PATCH v8 1/3] gcc/: Rename array_type_nelts() => array_type_nelts_minus_one() Alejandro Colomar
2024-08-11 23:46 ` [PATCH v8 2/3] Merge definitions of array_type_nelts_top() Alejandro Colomar
2024-08-11 23:46 ` [PATCH v8 3/3] c: Add __lengthof__ operator Alejandro Colomar
2024-08-12 23:34 ` [WG14] Request for document number; _Lengthof Alejandro Colomar
2024-08-13 7:33 ` Alejandro Colomar
2024-08-13 15:02 ` v2.1 Draft for a lengthof paper Alejandro Colomar
2024-08-13 22:38 ` Xavier Del Campo Romero
2024-08-13 23:27 ` Alejandro Colomar
2024-08-14 6:11 ` Jens Gustedt
2024-08-14 8:41 ` Alejandro Colomar
2024-08-14 11:31 ` Ballman, Aaron
2024-08-14 12:17 ` Jens Gustedt
2024-08-14 12:40 ` Ballman, Aaron
2024-08-14 13:13 ` Alejandro Colomar
2024-08-14 13:24 ` Jens Gustedt
2024-08-14 13:59 ` Ballman, Aaron
2024-08-14 14:31 ` Alejandro Colomar
2024-08-14 13:50 ` Martin Uecker
2024-08-14 14:12 ` Alejandro Colomar
2024-08-14 14:37 ` Martin Uecker
2024-08-14 12:58 ` Alejandro Colomar
2024-08-14 13:21 ` Ballman, Aaron
2024-08-14 14:00 ` Alejandro Colomar
2024-08-14 14:07 ` Ballman, Aaron
2024-08-14 15:01 ` Alejandro Colomar
2024-08-14 13:50 ` Jens Gustedt
2024-08-14 14:47 ` Alejandro Colomar
2024-08-14 14:52 ` Ballman, Aaron
2024-08-14 15:01 ` Martin Uecker
2024-08-14 15:44 ` Jens Gustedt
2024-09-01 9:10 ` VLA is a misnomer (rebuttal to n3187) Alejandro Colomar
2024-09-01 9:51 ` Martin Uecker
2024-08-14 5:58 ` v2.1 Draft for a lengthof paper Jens Gustedt
2024-08-14 20:58 ` [PATCH v9 0/3] c: Add __elementsof__ operator Alejandro Colomar
2024-08-14 20:58 ` [PATCH v9 1/3] gcc/: Rename array_type_nelts() => array_type_nelts_minus_one() Alejandro Colomar
2024-08-14 20:58 ` [PATCH v9 2/3] Merge definitions of array_type_nelts_top() Alejandro Colomar
2024-08-14 20:58 ` [PATCH v9 3/3] c: Add __elementsof__ operator Alejandro Colomar
2024-08-19 10:58 ` [PATCH v10 0/3] c: Add __nelementsof__ operator Alejandro Colomar
2024-08-19 10:58 ` [PATCH v10 1/3] gcc/: Rename array_type_nelts() => array_type_nelts_minus_one() Alejandro Colomar
2024-08-19 16:46 ` Jason Merrill
2024-08-20 18:09 ` Alejandro Colomar
2024-08-19 10:58 ` [PATCH v10 2/3] Merge definitions of array_type_nelts_top() Alejandro Colomar
2024-08-19 10:58 ` [PATCH v10 3/3] c: Add __nelementsof__ operator Alejandro Colomar
2024-08-20 18:41 ` [PATCH v11 0/4] " Alejandro Colomar
2024-08-20 18:41 ` [PATCH v11 1/4] contrib/: Add support for Cc: and Link: tags Alejandro Colomar
2024-08-20 18:49 ` Alejandro Colomar
2024-08-20 18:41 ` [PATCH v11 2/4] gcc/: Rename array_type_nelts() => array_type_nelts_minus_one() Alejandro Colomar
2024-08-20 18:41 ` [PATCH v11 3/4] Merge definitions of array_type_nelts_top() Alejandro Colomar
2024-08-20 18:41 ` [PATCH v11 4/4] c: Add __nelementsof__ operator Alejandro Colomar
2024-08-31 14:56 ` [PATCH v12 0/4] " Alejandro Colomar
2024-08-31 14:56 ` [PATCH v12 1/4] contrib/: Add support for Cc: and Link: tags Alejandro Colomar
2024-08-31 14:56 ` [PATCH v12 2/4] gcc/: Rename array_type_nelts() => array_type_nelts_minus_one() Alejandro Colomar
2024-08-31 14:56 ` [PATCH v12 3/4] Merge definitions of array_type_nelts_top() Alejandro Colomar
2024-08-31 14:56 ` [PATCH v12 4/4] c: Add __nelementsof__ operator Alejandro Colomar
2024-10-02 8:34 ` [PATCH v12 0/4] " Alejandro Colomar
2024-10-02 9:41 ` [PATCH v13 0/4] c: Add __lengthof__ operator Alejandro Colomar
2024-10-02 9:41 ` [PATCH v13 1/4] contrib/: Add support for Cc: and Link: tags Alejandro Colomar
2024-10-02 9:41 ` [PATCH v13 2/4] gcc/: Rename array_type_nelts() => array_type_nelts_minus_one() Alejandro Colomar
2024-10-02 9:41 ` [PATCH v13 3/4] Merge definitions of array_type_nelts_top() Alejandro Colomar
2024-10-02 9:41 ` [PATCH v13 4/4] c: Add __lengthof__ operator Alejandro Colomar
2024-10-07 17:35 ` [PATCH v13 0/4] " Joseph Myers
2024-10-08 0:04 ` Alejandro Colomar
2024-10-08 0:09 ` Alejandro Colomar
2024-10-08 6:45 ` Jakub Jelinek
2024-10-08 8:11 ` Alejandro Colomar
2024-10-08 13:19 ` Joseph Myers
2024-10-08 13:28 ` Alejandro Colomar
2024-10-08 13:40 ` Jakub Jelinek
2024-10-08 14:49 ` Alejandro Colomar
2024-10-08 15:13 ` Chris Bazley
2024-10-09 12:11 ` Alejandro Colomar
2024-10-09 17:05 ` Joseph Myers
2024-10-09 18:48 ` Alejandro Colomar
2024-10-09 19:31 ` Joseph Myers
2024-10-09 20:25 ` Alejandro Colomar
2024-10-09 21:11 ` Joseph Myers
2024-10-09 21:20 ` Alejandro Colomar
2024-10-10 4:13 ` Xavier Del Campo Romero
2024-10-15 10:03 ` Alejandro Colomar
2024-10-09 19:40 ` Meaning of "length", "size", and "count" Jakub Łukasiewicz
2024-10-09 20:31 ` Alejandro Colomar
2024-10-08 14:04 ` [PATCH v13 0/4] c: Add __lengthof__ operator Joseph Myers
2024-10-08 14:59 ` Alejandro Colomar
2024-10-08 15:13 ` Joseph Myers
2024-10-08 15:21 ` Chris Bazley
2024-10-08 15:54 ` Jₑₙₛ Gustedt
2024-10-08 19:14 ` Alejandro Colomar
2024-10-08 8:25 ` Jakub Łukasiewicz
2024-10-08 8:33 ` Alejandro Colomar
2024-10-08 8:59 ` Jakub Łukasiewicz
2024-10-08 13:23 ` Joseph Myers
2024-10-08 9:11 ` [PATCH v14 0/4] c: Add __countof__ operator Alejandro Colomar
2024-10-08 9:11 ` [PATCH v14 1/4] contrib/: Add support for Cc: and Link: tags Alejandro Colomar
2024-10-08 9:11 ` [PATCH v14 2/4] gcc/: Rename array_type_nelts() => array_type_nelts_minus_one() Alejandro Colomar
2024-10-08 9:11 ` [PATCH v14 3/4] Merge definitions of array_type_nelts_top() Alejandro Colomar
2024-10-08 9:11 ` [PATCH v14 4/4] c: Add __countof__ operator Alejandro Colomar
2024-10-16 10:13 ` [PATCH v15 0/4] " Alejandro Colomar
2024-10-16 10:13 ` [PATCH v15 1/4] contrib/: Add support for Cc: and Link: tags Alejandro Colomar
2024-10-16 10:13 ` [PATCH v15 2/4] gcc/: Rename array_type_nelts() => array_type_nelts_minus_one() Alejandro Colomar
2024-10-16 10:34 ` Joseph Myers
2024-10-16 10:45 ` Alejandro Colomar
2024-10-16 10:53 ` Alejandro Colomar
2024-10-16 11:08 ` Joseph Myers
2024-10-16 10:13 ` [PATCH v15 3/4] Merge definitions of array_type_nelts_top() Alejandro Colomar
2024-10-16 10:13 ` [PATCH v15 4/4] c: Add __countof__ operator Alejandro Colomar
2024-10-16 10:30 ` Joseph Myers
2024-10-16 10:46 ` Alejandro Colomar
2024-10-22 18:48 ` [PATCH v17 0/2] " Alejandro Colomar
2024-10-22 18:48 ` [PATCH v17 1/2] contrib/: Add support for Cc: and Link: tags Alejandro Colomar
2024-10-22 18:48 ` [PATCH v17 2/2] c: Add __countof__ operator Alejandro Colomar
2024-10-25 20:44 ` Joseph Myers
2024-10-25 22:10 ` Alejandro Colomar
2024-11-08 14:00 ` Alejandro Colomar
2024-11-08 15:51 ` Joseph Myers
2024-10-22 18:52 ` [PATCH v17 0/2] " Alejandro Colomar
2024-11-10 10:32 ` [PATCH v18 " Alejandro Colomar
2024-11-10 10:32 ` [PATCH v18 1/2] contrib/: Add support for Cc: and Link: tags Alejandro Colomar
2024-11-10 10:32 ` [PATCH v18 2/2] c: Add __countof__ operator Alejandro Colomar
2024-11-10 10:34 ` [PATCH v18 0/2] " Alejandro Colomar
2024-11-10 13:47 ` Martin Uecker
2024-10-16 12:10 ` [PATCH v16b 0/4] " Alejandro Colomar
2024-10-16 12:10 ` [PATCH v16b 1/4] contrib/: Add support for Cc: and Link: tags Alejandro Colomar
2024-10-16 12:10 ` [PATCH v16b 2/4] gcc/: Rename array_type_nelts => array_type_nelts_minus_one Alejandro Colomar
2024-10-16 17:21 ` Joseph Myers
2024-10-16 18:02 ` Alejandro Colomar
2024-10-18 8:25 ` Alejandro Colomar
2024-10-18 11:22 ` Alejandro Colomar
2024-10-16 12:10 ` [PATCH v16b 3/4] gcc/: Merge definitions of array_type_nelts_top Alejandro Colomar
2024-10-18 22:43 ` Joseph Myers
2024-10-16 12:10 ` [PATCH v16b 4/4] c: Add __countof__ operator Alejandro Colomar
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=b5390845-bd78-4957-a9ba-8c4e789d683b@hesbynett.no \
--to=david.brown@hesbynett.no \
--cc=alx@kernel.org \
--cc=fweimer@redhat.com \
--cc=gabravier@gmail.com \
--cc=gcc-patches@gcc.gnu.org \
--cc=jakub@redhat.com \
--cc=jens.gustedt@inria.fr \
--cc=josmyers@redhat.com \
--cc=keescook@chromium.org \
--cc=qing.zhao@oracle.com \
--cc=schwab@linux-m68k.org \
--cc=uecker@tugraz.at \
--cc=xavi.dcr@tutanota.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).