public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/97356] New: [11 regression] several test case failures after r11-3748
@ 2020-10-09 16:30 seurer at gcc dot gnu.org
  2020-10-12  6:19 ` [Bug tree-optimization/97356] " rguenth at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: seurer at gcc dot gnu.org @ 2020-10-09 16:30 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 97356
           Summary: [11 regression] several test case failures after
                    r11-3748
           Product: gcc
           Version: 11.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: seurer at gcc dot gnu.org
  Target Milestone: ---

g:ffe8baa996486fa0313aa804a064a58b0b161f07, r11-3748

make -k check-gcc RUNTESTFLAGS=tree-ssa.exp=gcc.dg/tree-ssa/modref-2.c
FAIL: gcc.dg/tree-ssa/modref-2.c execution test
# of expected passes            1
# of unexpected failures        1

(gdb) run
Starting program: /home/seurer/gcc/git/build/gcc-test/./modref-2.exe 

Program received signal SIGABRT, Aborted.
0x00003fffb7cd260c in __GI_raise (sig=<optimized out>) at
../nptl/sysdeps/unix/sysv/linux/raise.c:55
55        return INLINE_SYSCALL (tgkill, 3, pid, selftid, sig);
(gdb) where
#0  0x00003fffb7cd260c in __GI_raise (sig=<optimized out>) at
../nptl/sysdeps/unix/sysv/linux/raise.c:55
#1  0x00003fffb7cd47f8 in __GI_abort () at abort.c:90
#2  0x000000001000053c in main () at
/home/seurer/gcc/git/gcc-test/gcc/testsuite/gcc.dg/tree-ssa/modref-2.c:22



Also

FAIL: gcc.dg/lto/modref-1 c_lto_modref-1_0.o-c_lto_modref-1_1.o execute -O2
-flto-partition=max -flto



commit ffe8baa996486fa0313aa804a064a58b0b161f07
Author: Jan Hubicka <jh@suse.cz>
Date:   Fri Oct 9 11:29:58 2020 +0200

    IPA modref: fix miscompilation in clone when IPA modref is used

    gcc/ChangeLog:

        PR ipa/97292
        PR ipa/97335
        * ipa-modref-tree.h (copy_from): Drop summary in a
        clone.

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

* [Bug tree-optimization/97356] [11 regression] several test case failures after r11-3748
  2020-10-09 16:30 [Bug tree-optimization/97356] New: [11 regression] several test case failures after r11-3748 seurer at gcc dot gnu.org
@ 2020-10-12  6:19 ` rguenth at gcc dot gnu.org
  2020-10-12  7:08 ` marxin at gcc dot gnu.org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: rguenth at gcc dot gnu.org @ 2020-10-12  6:19 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |11.0

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

* [Bug tree-optimization/97356] [11 regression] several test case failures after r11-3748
  2020-10-09 16:30 [Bug tree-optimization/97356] New: [11 regression] several test case failures after r11-3748 seurer at gcc dot gnu.org
  2020-10-12  6:19 ` [Bug tree-optimization/97356] " rguenth at gcc dot gnu.org
@ 2020-10-12  7:08 ` marxin at gcc dot gnu.org
  2020-10-12  8:53 ` hubicka at ucw dot cz
  2020-10-12 11:44 ` rguenth at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: marxin at gcc dot gnu.org @ 2020-10-12  7:08 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
     Ever confirmed|0                           |1
                 CC|                            |marxin at gcc dot gnu.org
           Assignee|unassigned at gcc dot gnu.org      |hubicka at gcc dot gnu.org
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2020-10-12

--- Comment #1 from Martin Liška <marxin at gcc dot gnu.org> ---
It's a known fallout..

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

* [Bug tree-optimization/97356] [11 regression] several test case failures after r11-3748
  2020-10-09 16:30 [Bug tree-optimization/97356] New: [11 regression] several test case failures after r11-3748 seurer at gcc dot gnu.org
  2020-10-12  6:19 ` [Bug tree-optimization/97356] " rguenth at gcc dot gnu.org
  2020-10-12  7:08 ` marxin at gcc dot gnu.org
@ 2020-10-12  8:53 ` hubicka at ucw dot cz
  2020-10-12 11:44 ` rguenth at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: hubicka at ucw dot cz @ 2020-10-12  8:53 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from Jan Hubicka <hubicka at ucw dot cz> ---
> It's a known fallout..
The abort is about missed optimization - the patch was aiming to fix
wrong code issue on dealII and x264.

The testcase should work again after
https://gcc.gnu.org/pipermail/gcc-patches/2020-October/555927.html
where I tracked down the underlying wrong code issue and re-enabled the
propagation to inline clones.

Honza

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

* [Bug tree-optimization/97356] [11 regression] several test case failures after r11-3748
  2020-10-09 16:30 [Bug tree-optimization/97356] New: [11 regression] several test case failures after r11-3748 seurer at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2020-10-12  8:53 ` hubicka at ucw dot cz
@ 2020-10-12 11:44 ` rguenth at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: rguenth at gcc dot gnu.org @ 2020-10-12 11:44 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Biener <rguenth at gcc dot gnu.org> changed:

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

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
Fixed.

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

end of thread, other threads:[~2020-10-12 11:44 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-09 16:30 [Bug tree-optimization/97356] New: [11 regression] several test case failures after r11-3748 seurer at gcc dot gnu.org
2020-10-12  6:19 ` [Bug tree-optimization/97356] " rguenth at gcc dot gnu.org
2020-10-12  7:08 ` marxin at gcc dot gnu.org
2020-10-12  8:53 ` hubicka at ucw dot cz
2020-10-12 11:44 ` rguenth 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).