https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113399

--- Comment #6 from GCC Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Jakub Jelinek <ja...@gcc.gnu.org>:

https://gcc.gnu.org/g:1203fc2e6a40c65896763554f62cacfb4bd6a836

commit r14-8208-g1203fc2e6a40c65896763554f62cacfb4bd6a836
Author: Jakub Jelinek <ja...@redhat.com>
Date:   Thu Jan 18 08:45:09 2024 +0100

    opts: Fix up -ffold-mem-offsets option keywords

    While the option was originally meant to be a Target option for a single
    target, it is an option for all targets, so should be Common rather than
    Target, and because it is an optimization option which could be different
    in between different LTO TUs, I've added Optimization keyword too.
    From what I can see, Bool is a non-documented non-existing keyword (at
    least, grep Bool *.awk shows nothing, so I've dropped that too.  Seems
    that the option parsing simply parses and ignores any non-existing
keywords.

    Guess we should drop the Bool keywords from the gcc/config/riscv/riscv.opt
    file eventually, so that people don't copy this around.

    2024-01-18  Jakub Jelinek  <ja...@redhat.com>

            PR other/113399
            * common.opt (ffold-mem-offsets): Remove Target and Bool keywords,
add
            Common and Optimization.

Reply via email to