[PATCH] Various pages: SYNOPSIS: Use VLA syntax in function parameters
Joseph Myers
joseph@codesourcery.com
Sat Nov 12 14:54:10 GMT 2022
On Sat, 12 Nov 2022, Alejandro Colomar via Gcc wrote:
> Since it's to be used as an rvalue, not as a lvalue, I guess a
> postfix-expression wouldn't be the right one.
Several forms of postfix-expression are only rvalues.
> > (with a special rule about how the identifier is interpreted, different
> > from the normal scope rules)? If so, then ".a = 1" could either match
> > assignment-expression directly (assigning to the postfix-expression ".a").
>
> No, assigning to a function parameter from within another parameter
> declaration wouldn't make sense. They should be readonly. Side effects
> should be forbidden, I think.
Such assignments are already allowed. In a function definition, the side
effects (including in size expressions for array parameters adjusted to
pointers) take place before entry to the function body.
And, in any case, if you did have a constraint disallowing such
assignments, it wouldn't suffice for syntactic disambiguation (see the
previous point I made about that; I have some rough notes towards a WG14
paper on syntactic disambiguation, but haven't converted them into a
coherent paper).
--
Joseph S. Myers
joseph@codesourcery.com
More information about the Gcc
mailing list