public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug middle-end/115022] New: -fstrub=disable and -minline-memops-threshold have a - in the index
@ 2024-05-10  5:07 pinskia at gcc dot gnu.org
  2024-05-10  5:07 ` [Bug middle-end/115022] " pinskia at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: pinskia at gcc dot gnu.org @ 2024-05-10  5:07 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 115022
           Summary: -fstrub=disable and -minline-memops-threshold have a -
                    in the index
           Product: gcc
           Version: 15.0
            Status: UNCONFIRMED
          Keywords: documentation
          Severity: normal
          Priority: P3
         Component: middle-end
          Assignee: unassigned at gcc dot gnu.org
          Reporter: pinskia at gcc dot gnu.org
  Target Milestone: ---

See https://gcc.gnu.org/onlinedocs/gcc-14.1.0/gcc/Option-Index.html .

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug middle-end/115022] -fstrub=disable and -minline-memops-threshold have a - in the index
  2024-05-10  5:07 [Bug middle-end/115022] New: -fstrub=disable and -minline-memops-threshold have a - in the index pinskia at gcc dot gnu.org
@ 2024-05-10  5:07 ` pinskia at gcc dot gnu.org
  2024-05-30  3:48 ` pinskia at gcc dot gnu.org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: pinskia at gcc dot gnu.org @ 2024-05-10  5:07 UTC (permalink / raw)
  To: gcc-bugs

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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Assignee|unassigned at gcc dot gnu.org      |pinskia at gcc dot gnu.org
     Ever confirmed|0                           |1
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2024-05-10

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
I will take care of this the week after next.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug middle-end/115022] -fstrub=disable and -minline-memops-threshold have a - in the index
  2024-05-10  5:07 [Bug middle-end/115022] New: -fstrub=disable and -minline-memops-threshold have a - in the index pinskia at gcc dot gnu.org
  2024-05-10  5:07 ` [Bug middle-end/115022] " pinskia at gcc dot gnu.org
@ 2024-05-30  3:48 ` pinskia at gcc dot gnu.org
  2024-05-31  7:59 ` cvs-commit at gcc dot gnu.org
  2024-05-31  7:59 ` pinskia at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: pinskia at gcc dot gnu.org @ 2024-05-30  3:48 UTC (permalink / raw)
  To: gcc-bugs

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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                URL|                            |https://gcc.gnu.org/piperma
                   |                            |il/gcc-patches/2024-May/653
                   |                            |100.html
           Keywords|                            |patch

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Patch submitted with some extra fixes I noticed for opindex for some options:
https://gcc.gnu.org/pipermail/gcc-patches/2024-May/653100.html

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug middle-end/115022] -fstrub=disable and -minline-memops-threshold have a - in the index
  2024-05-10  5:07 [Bug middle-end/115022] New: -fstrub=disable and -minline-memops-threshold have a - in the index pinskia at gcc dot gnu.org
  2024-05-10  5:07 ` [Bug middle-end/115022] " pinskia at gcc dot gnu.org
  2024-05-30  3:48 ` pinskia at gcc dot gnu.org
@ 2024-05-31  7:59 ` cvs-commit at gcc dot gnu.org
  2024-05-31  7:59 ` pinskia at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2024-05-31  7:59 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #3 from GCC Commits <cvs-commit at gcc dot gnu.org> ---
The trunk branch has been updated by Andrew Pinski <pinskia@gcc.gnu.org>:

https://gcc.gnu.org/g:a0d60660f2aae2d79685f73d568facb2397582d8

commit r15-938-ga0d60660f2aae2d79685f73d568facb2397582d8
Author: Andrew Pinski <quic_apinski@quicinc.com>
Date:   Wed May 29 20:40:31 2024 -0700

    Fix some opindex for some options [PR115022]

    While looking at the index I noticed that some options had
    `-` in the front for the index which is wrong. And then
    I noticed there was no index for `mcmodel=` for targets or had
    used `-mcmodel` incorrectly.

    This fixes both of those and regnerates the urls files see that
    `-mcmodel=` option now has an url associated with it.

    gcc/ChangeLog:

            PR target/115022
            * doc/invoke.texi (fstrub=disable): Fix opindex.
            (minline-memops-threshold): Fix opindex.
            (mcmodel=): Add opindex and fix them.
            * common.opt.urls: Regenerate.
            * config/aarch64/aarch64.opt.urls: Regenerate.
            * config/bpf/bpf.opt.urls: Regenerate.
            * config/i386/i386.opt.urls: Regenerate.
            * config/loongarch/loongarch.opt.urls: Regenerate.
            * config/nds32/nds32-elf.opt.urls: Regenerate.
            * config/nds32/nds32-linux.opt.urls: Regenerate.
            * config/or1k/or1k.opt.urls: Regenerate.
            * config/riscv/riscv.opt.urls: Regenerate.
            * config/rs6000/aix64.opt.urls: Regenerate.
            * config/rs6000/linux64.opt.urls: Regenerate.
            * config/sparc/sparc.opt.urls: Regenerate.

    Signed-off-by: Andrew Pinski <quic_apinski@quicinc.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug middle-end/115022] -fstrub=disable and -minline-memops-threshold have a - in the index
  2024-05-10  5:07 [Bug middle-end/115022] New: -fstrub=disable and -minline-memops-threshold have a - in the index pinskia at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2024-05-31  7:59 ` cvs-commit at gcc dot gnu.org
@ 2024-05-31  7:59 ` pinskia at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: pinskia at gcc dot gnu.org @ 2024-05-31  7:59 UTC (permalink / raw)
  To: gcc-bugs

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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
   Target Milestone|---                         |15.0
             Status|ASSIGNED                    |RESOLVED

--- Comment #4 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Fixed.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2024-05-31  7:59 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-05-10  5:07 [Bug middle-end/115022] New: -fstrub=disable and -minline-memops-threshold have a - in the index pinskia at gcc dot gnu.org
2024-05-10  5:07 ` [Bug middle-end/115022] " pinskia at gcc dot gnu.org
2024-05-30  3:48 ` pinskia at gcc dot gnu.org
2024-05-31  7:59 ` cvs-commit at gcc dot gnu.org
2024-05-31  7:59 ` pinskia at gcc dot gnu.org

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).