Linux-KBuild Archive mirror
 help / color / mirror / Atom feed
From: Masahiro Yamada <masahiroy@kernel.org>
To: Arnd Bergmann <arnd@kernel.org>
Cc: linux-kbuild@vger.kernel.org, Arnd Bergmann <arnd@arndb.de>,
	 Nathan Chancellor <nathan@kernel.org>,
	Nicolas Schier <nicolas@fjasle.eu>, Tony Finch <dot@dotat.at>,
	 linux-kernel@vger.kernel.org
Subject: Re: [PATCH] [v2] scripts/unifdef: avoid constexpr keyword
Date: Tue, 16 Apr 2024 21:08:19 +0900	[thread overview]
Message-ID: <CAK7LNARRYJzOVP8eDhLHoqrcm165ztc4cwazu+tquqSzeGGUkg@mail.gmail.com> (raw)
In-Reply-To: <20240408071758.2526806-1-arnd@kernel.org>

On Mon, Apr 8, 2024 at 4:18 PM Arnd Bergmann <arnd@kernel.org> wrote:
>
> From: Arnd Bergmann <arnd@arndb.de>
>
> Starting with c23, 'constexpr' is a keyword in C like in C++ and cannot
> be used as an identifier:
>
> scripts/unifdef.c:206:25: error: 'constexpr' can only be used in variable declarations
>   206 | static bool             constexpr;              /* constant #if expression */
>       |                         ^
> scripts/unifdef.c:880:13: error: expected identifier or '('
>   880 |                 constexpr = false;
>       |                           ^
>
> Rename this instance to allow changing to C23 at some point in the future.
>
> Cc: Masahiro Yamada <masahiroy@kernel.org>
> Cc: Nathan Chancellor <nathan@kernel.org>
> Cc: Nicolas Schier <nicolas@fjasle.eu>
> Cc: linux-kbuild@vger.kernel.org
> Reviewed-By: Tony Finch <dot@dotat.at>
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> ---
>  v2: include fixup from Tony


Applied to linux-kbuild. Thanks.


> ---
>  scripts/unifdef.c | 12 ++++++------
>  1 file changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/scripts/unifdef.c b/scripts/unifdef.c
> index db00e3e30a59..ff15efd6e7d7 100644
> --- a/scripts/unifdef.c
> +++ b/scripts/unifdef.c
> @@ -203,7 +203,7 @@ static int              depth;                      /* current #if nesting */
>  static int              delcount;              /* count of deleted lines */
>  static unsigned         blankcount;            /* count of blank lines */
>  static unsigned         blankmax;              /* maximum recent blankcount */
> -static bool             constexpr;             /* constant #if expression */
> +static bool             constexpression;       /* constant #if expression */
>  static bool             zerosyms = true;       /* to format symdepth output */
>  static bool             firstsym;              /* ditto */
>
> @@ -819,7 +819,7 @@ static const struct ops {
>  /*
>   * Function for evaluating the innermost parts of expressions,
>   * viz. !expr (expr) number defined(symbol) symbol
> - * We reset the constexpr flag in the last two cases.
> + * We reset the constexpression flag in the last two cases.
>   */
>  static Linetype
>  eval_unary(const struct ops *ops, int *valp, const char **cpp)
> @@ -877,7 +877,7 @@ eval_unary(const struct ops *ops, int *valp, const char **cpp)
>                 cp = skipcomment(cp);
>                 if (defparen && *cp++ != ')')
>                         return (LT_ERROR);
> -               constexpr = false;
> +               constexpression = false;
>         } else if (!endsym(*cp)) {
>                 debug("eval%d symbol", ops - eval_ops);
>                 sym = findsym(cp);
> @@ -895,7 +895,7 @@ eval_unary(const struct ops *ops, int *valp, const char **cpp)
>                         lt = *valp ? LT_TRUE : LT_FALSE;
>                         cp = skipargs(cp);
>                 }
> -               constexpr = false;
> +               constexpression = false;
>         } else {
>                 debug("eval%d bad expr", ops - eval_ops);
>                 return (LT_ERROR);
> @@ -955,10 +955,10 @@ ifeval(const char **cpp)
>         int val = 0;
>
>         debug("eval %s", *cpp);
> -       constexpr = killconsts ? false : true;
> +       constexpression = killconsts ? false : true;
>         ret = eval_table(eval_ops, &val, cpp);
>         debug("eval = %d", val);
> -       return (constexpr ? LT_IF : ret == LT_ERROR ? LT_IF : ret);
> +       return (constexpression ? LT_IF : ret == LT_ERROR ? LT_IF : ret);
>  }
>
>  /*
> --
> 2.39.2
>


-- 
Best Regards
Masahiro Yamada

      parent reply	other threads:[~2024-04-16 12:08 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-08  7:17 [PATCH] [v2] scripts/unifdef: avoid constexpr keyword Arnd Bergmann
2024-04-10  7:52 ` Nicolas Schier
2024-04-16 12:08 ` Masahiro Yamada [this message]

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=CAK7LNARRYJzOVP8eDhLHoqrcm165ztc4cwazu+tquqSzeGGUkg@mail.gmail.com \
    --to=masahiroy@kernel.org \
    --cc=arnd@arndb.de \
    --cc=arnd@kernel.org \
    --cc=dot@dotat.at \
    --cc=linux-kbuild@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=nathan@kernel.org \
    --cc=nicolas@fjasle.eu \
    /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).