public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug other/115415] New: New test case gcc.dg/torture/pr115388.c in r15-1163-g818e760528d436 hangs
@ 2024-06-10 14:27 seurer at gcc dot gnu.org
  2024-06-10 14:40 ` [Bug testsuite/115415] " pinskia at gcc dot gnu.org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: seurer at gcc dot gnu.org @ 2024-06-10 14:27 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 115415
           Summary: New test case gcc.dg/torture/pr115388.c in
                    r15-1163-g818e760528d436 hangs
           Product: gcc
           Version: 15.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: other
          Assignee: unassigned at gcc dot gnu.org
          Reporter: seurer at gcc dot gnu.org
  Target Milestone: ---

g:818e760528d436ea8f6c28ef620e2bb82d456ea1, r15-1163-g818e760528d436 

It times out eventually but this hangs on all our powerpc64 systems.  I let it
run on one with no timeout and it was still going after 90 minutes.


commit 818e760528d436ea8f6c28ef620e2bb82d456ea1 (HEAD, origin/master,
origin/HEAD)
Author: Richard Biener <rguenther@suse.de>
Date:   Mon Jun 10 11:29:43 2024 +0200

    tree-optimization/115388 - wrong DSE in irreductible regions

            * gcc.dg/torture/pr115388.c: New testcase.

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

* [Bug testsuite/115415] New test case gcc.dg/torture/pr115388.c in r15-1163-g818e760528d436 hangs
  2024-06-10 14:27 [Bug other/115415] New: New test case gcc.dg/torture/pr115388.c in r15-1163-g818e760528d436 hangs seurer at gcc dot gnu.org
@ 2024-06-10 14:40 ` pinskia at gcc dot gnu.org
  2024-06-10 15:27 ` cvs-commit at gcc dot gnu.org
  2024-06-10 15:27 ` pinskia at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: pinskia at gcc dot gnu.org @ 2024-06-10 14:40 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|other                       |testsuite
     Ever confirmed|0                           |1
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2024-06-10

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Mine. It is a testcase issue. A simple s/char/signed char/ should fix it.

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

* [Bug testsuite/115415] New test case gcc.dg/torture/pr115388.c in r15-1163-g818e760528d436 hangs
  2024-06-10 14:27 [Bug other/115415] New: New test case gcc.dg/torture/pr115388.c in r15-1163-g818e760528d436 hangs seurer at gcc dot gnu.org
  2024-06-10 14:40 ` [Bug testsuite/115415] " pinskia at gcc dot gnu.org
@ 2024-06-10 15:27 ` cvs-commit at gcc dot gnu.org
  2024-06-10 15:27 ` pinskia at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2024-06-10 15:27 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 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:c3d1153bc0a2b820e3c373ecf19a5a127703f854

commit r15-1165-gc3d1153bc0a2b820e3c373ecf19a5a127703f854
Author: Andrew Pinski <quic_apinski@quicinc.com>
Date:   Mon Jun 10 08:23:00 2024 -0700

    Fix pr115388.c: plain char could be unsigned by default [PR115415]

    This is a simple fix to the testcase as plain `char` could be
    unsigned by default on some targets (e.g. aarch64 and powerpc).

    Committed as obvious after quick test of the testcase on both aarch64 and
x86_64.

    gcc/testsuite/ChangeLog:

            PR testsuite/115415
            PR tree-optimization/115388
            * gcc.dg/torture/pr115388.c: Use `signed char` directly instead
            of plain `char`.

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

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

* [Bug testsuite/115415] New test case gcc.dg/torture/pr115388.c in r15-1163-g818e760528d436 hangs
  2024-06-10 14:27 [Bug other/115415] New: New test case gcc.dg/torture/pr115388.c in r15-1163-g818e760528d436 hangs seurer at gcc dot gnu.org
  2024-06-10 14:40 ` [Bug testsuite/115415] " pinskia at gcc dot gnu.org
  2024-06-10 15:27 ` cvs-commit at gcc dot gnu.org
@ 2024-06-10 15:27 ` pinskia at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: pinskia at gcc dot gnu.org @ 2024-06-10 15:27 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

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

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

end of thread, other threads:[~2024-06-10 15:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-06-10 14:27 [Bug other/115415] New: New test case gcc.dg/torture/pr115388.c in r15-1163-g818e760528d436 hangs seurer at gcc dot gnu.org
2024-06-10 14:40 ` [Bug testsuite/115415] " pinskia at gcc dot gnu.org
2024-06-10 15:27 ` cvs-commit at gcc dot gnu.org
2024-06-10 15:27 ` 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).