public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug testsuite/102688] New: [12 regression] gcc.dg/ipa/iinline-attr.c fails after r12-4288
@ 2021-10-11 18:53 seurer at gcc dot gnu.org
  2021-10-12  5:55 ` [Bug middle-end/102688] " pinskia at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: seurer at gcc dot gnu.org @ 2021-10-11 18:53 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 102688
           Summary: [12 regression] gcc.dg/ipa/iinline-attr.c fails after
                    r12-4288
           Product: gcc
           Version: 12.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: testsuite
          Assignee: unassigned at gcc dot gnu.org
          Reporter: seurer at gcc dot gnu.org
  Target Milestone: ---

g:177b800f5fc861af1bf8700f050de28dd47ee1aa, r12-4288

FAIL: gcc.dg/ipa/iinline-attr.c scan-ipa-dump inline "hooray[^\\n]*inline copy
in test"

Executing on host: /home/seurer/gcc/git/build/gcc-test/gcc/xgcc
-B/home/seurer/gcc/git/build/gcc-test/gcc/
/home/seurer/gcc/git/gcc-test/gcc/testsuite/gcc.dg/ipa/iinline-attr.c   
-fdiagnostics-plain-output   -O2 -fdump-ipa-inline -S -o iinline-attr.s   
(timeout = 300)
spawn -ignore SIGHUP /home/seurer/gcc/git/build/gcc-test/gcc/xgcc
-B/home/seurer/gcc/git/build/gcc-test/gcc/
/home/seurer/gcc/git/gcc-test/gcc/testsuite/gcc.dg/ipa/iinline-attr.c
-fdiagnostics-plain-output -O2 -fdump-ipa-inline -S -o iinline-attr.s^M
PASS: gcc.dg/ipa/iinline-attr.c (test for excess errors)
FAIL: gcc.dg/ipa/iinline-attr.c scan-ipa-dump inline "hooray[^\\n]*inline copy
in test"

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

* [Bug middle-end/102688] [12 regression] gcc.dg/ipa/iinline-attr.c fails after r12-4288
  2021-10-11 18:53 [Bug testsuite/102688] New: [12 regression] gcc.dg/ipa/iinline-attr.c fails after r12-4288 seurer at gcc dot gnu.org
@ 2021-10-12  5:55 ` pinskia at gcc dot gnu.org
  2021-10-12  5:59 ` [Bug ipa/102688] " pinskia at gcc dot gnu.org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu.org @ 2021-10-12  5:55 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
   Target Milestone|---                         |12.0
          Component|testsuite                   |middle-end

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

* [Bug ipa/102688] [12 regression] gcc.dg/ipa/iinline-attr.c fails after r12-4288
  2021-10-11 18:53 [Bug testsuite/102688] New: [12 regression] gcc.dg/ipa/iinline-attr.c fails after r12-4288 seurer at gcc dot gnu.org
  2021-10-12  5:55 ` [Bug middle-end/102688] " pinskia at gcc dot gnu.org
@ 2021-10-12  5:59 ` pinskia at gcc dot gnu.org
  2021-10-12  8:03 ` [Bug target/102688] " marxin at gcc dot gnu.org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu.org @ 2021-10-12  5:59 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|                            |2021-10-12
                 CC|                            |marxin at gcc dot gnu.org
             Status|UNCONFIRMED                 |NEW
     Ever confirmed|0                           |1
          Component|middle-end                  |ipa

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
This has to be option handling of flag_unroll_loops and flag_rename_registers
and an interaction between rs6000_override_options_after_change and the rest.

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

* [Bug target/102688] [12 regression] gcc.dg/ipa/iinline-attr.c fails after r12-4288
  2021-10-11 18:53 [Bug testsuite/102688] New: [12 regression] gcc.dg/ipa/iinline-attr.c fails after r12-4288 seurer at gcc dot gnu.org
  2021-10-12  5:55 ` [Bug middle-end/102688] " pinskia at gcc dot gnu.org
  2021-10-12  5:59 ` [Bug ipa/102688] " pinskia at gcc dot gnu.org
@ 2021-10-12  8:03 ` marxin at gcc dot gnu.org
  2021-10-13 13:03 ` cvs-commit at gcc dot gnu.org
  2021-10-13 13:03 ` marxin at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: marxin at gcc dot gnu.org @ 2021-10-12  8:03 UTC (permalink / raw)
  To: gcc-bugs

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

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
           Assignee|unassigned at gcc dot gnu.org      |marxin at gcc dot gnu.org

--- Comment #2 from Martin Liška <marxin at gcc dot gnu.org> ---
Yes, it's turned off by default in rs6000 here:

static const struct default_options rs6000_option_optimization_table[] =
  {
...
    /* -frename-registers leads to non-optimal codegen and performance
       on rs6000, turn it off by default.  */
    { OPT_LEVELS_ALL, OPT_frename_registers, NULL, 0 },
...
  }

I'm going to handle it.

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

* [Bug target/102688] [12 regression] gcc.dg/ipa/iinline-attr.c fails after r12-4288
  2021-10-11 18:53 [Bug testsuite/102688] New: [12 regression] gcc.dg/ipa/iinline-attr.c fails after r12-4288 seurer at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2021-10-12  8:03 ` [Bug target/102688] " marxin at gcc dot gnu.org
@ 2021-10-13 13:03 ` cvs-commit at gcc dot gnu.org
  2021-10-13 13:03 ` marxin at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2021-10-13 13:03 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #3 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Martin Liska <marxin@gcc.gnu.org>:

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

commit r12-4370-ge415bc4c035b1b655cf2cafcbe515382d1cefc93
Author: Martin Liska <mliska@suse.cz>
Date:   Tue Oct 12 16:05:49 2021 +0200

    Fix handling of flag_rename_registers by a target.

            PR target/102688

    gcc/ChangeLog:

            * common.opt: Use EnabledBy instead of detection in
            finish_options and process_options.
            * opts.c (finish_options): Remove handling of
            x_flag_unroll_all_loops.
            * toplev.c (process_options): Likewise for flag_web and
            flag_rename_registers.

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

* [Bug target/102688] [12 regression] gcc.dg/ipa/iinline-attr.c fails after r12-4288
  2021-10-11 18:53 [Bug testsuite/102688] New: [12 regression] gcc.dg/ipa/iinline-attr.c fails after r12-4288 seurer at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2021-10-13 13:03 ` cvs-commit at gcc dot gnu.org
@ 2021-10-13 13:03 ` marxin at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: marxin at gcc dot gnu.org @ 2021-10-13 13:03 UTC (permalink / raw)
  To: gcc-bugs

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

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
             Status|ASSIGNED                    |RESOLVED

--- Comment #4 from Martin Liška <marxin at gcc dot gnu.org> ---
Should be fixed now.

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

end of thread, other threads:[~2021-10-13 13:03 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-11 18:53 [Bug testsuite/102688] New: [12 regression] gcc.dg/ipa/iinline-attr.c fails after r12-4288 seurer at gcc dot gnu.org
2021-10-12  5:55 ` [Bug middle-end/102688] " pinskia at gcc dot gnu.org
2021-10-12  5:59 ` [Bug ipa/102688] " pinskia at gcc dot gnu.org
2021-10-12  8:03 ` [Bug target/102688] " marxin at gcc dot gnu.org
2021-10-13 13:03 ` cvs-commit at gcc dot gnu.org
2021-10-13 13:03 ` marxin 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).