public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug testsuite/99498] New: [11 regression] new test case g++.dg/opt/pr99305.C in r11-7587 fails
@ 2021-03-09 22:56 seurer at gcc dot gnu.org
  2021-03-10  8:16 ` [Bug testsuite/99498] " rguenth at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: seurer at gcc dot gnu.org @ 2021-03-09 22:56 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 99498
           Summary: [11 regression] new test case g++.dg/opt/pr99305.C in
                    r11-7587 fails
           Product: gcc
           Version: 11.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:b610c30453d8e4cc88693d85a5a100d089640be5, r11-7587
make  -k check-gcc RUNTESTFLAGS="dg.exp=g++.dg/opt/pr99305.C"
FAIL: g++.dg/opt/pr99305.C  -std=gnu++98  scan-tree-dump-times optimized " =
\\(unsigned char\\) c_[0-9]*\\(D\\);" 3
FAIL: g++.dg/opt/pr99305.C  -std=gnu++14  scan-tree-dump-times optimized " =
\\(unsigned char\\) c_[0-9]*\\(D\\);" 3
FAIL: g++.dg/opt/pr99305.C  -std=gnu++17  scan-tree-dump-times optimized " =
\\(unsigned char\\) c_[0-9]*\\(D\\);" 3
FAIL: g++.dg/opt/pr99305.C  -std=gnu++2a  scan-tree-dump-times optimized " =
\\(unsigned char\\) c_[0-9]*\\(D\\);" 3
# of expected passes            20
# of unexpected failures        4

commit b610c30453d8e4cc88693d85a5a100d089640be5 (HEAD)
Author: Jakub Jelinek <jakub@redhat.com>
Date:   Tue Mar 9 19:13:11 2021 +0100

    phiopt: Fix up conditional_replacement [PR99305]

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

* [Bug testsuite/99498] [11 regression] new test case g++.dg/opt/pr99305.C in r11-7587 fails
  2021-03-09 22:56 [Bug testsuite/99498] New: [11 regression] new test case g++.dg/opt/pr99305.C in r11-7587 fails seurer at gcc dot gnu.org
@ 2021-03-10  8:16 ` rguenth at gcc dot gnu.org
  2021-03-10 14:47 ` clyon at gcc dot gnu.org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: rguenth at gcc dot gnu.org @ 2021-03-10  8:16 UTC (permalink / raw)
  To: gcc-bugs

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

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 testsuite/99498] [11 regression] new test case g++.dg/opt/pr99305.C in r11-7587 fails
  2021-03-09 22:56 [Bug testsuite/99498] New: [11 regression] new test case g++.dg/opt/pr99305.C in r11-7587 fails seurer at gcc dot gnu.org
  2021-03-10  8:16 ` [Bug testsuite/99498] " rguenth at gcc dot gnu.org
@ 2021-03-10 14:47 ` clyon at gcc dot gnu.org
  2021-03-10 16:41 ` cvs-commit at gcc dot gnu.org
  2021-03-10 16:43 ` jakub at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: clyon at gcc dot gnu.org @ 2021-03-10 14:47 UTC (permalink / raw)
  To: gcc-bugs

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

Christophe Lyon <clyon at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |clyon at gcc dot gnu.org
             Target|powerpc64*-linux-gnu        |powerpc64*-linux-gnu
                   |                            |aarch64 arm

--- Comment #1 from Christophe Lyon <clyon at gcc dot gnu.org> ---
Seen on arm and aarch64 too

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

* [Bug testsuite/99498] [11 regression] new test case g++.dg/opt/pr99305.C in r11-7587 fails
  2021-03-09 22:56 [Bug testsuite/99498] New: [11 regression] new test case g++.dg/opt/pr99305.C in r11-7587 fails seurer at gcc dot gnu.org
  2021-03-10  8:16 ` [Bug testsuite/99498] " rguenth at gcc dot gnu.org
  2021-03-10 14:47 ` clyon at gcc dot gnu.org
@ 2021-03-10 16:41 ` cvs-commit at gcc dot gnu.org
  2021-03-10 16:43 ` jakub at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2021-03-10 16:41 UTC (permalink / raw)
  To: gcc-bugs

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

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

https://gcc.gnu.org/g:5bf998275aff311b9804c1de944a88c219f35db6

commit r11-7607-g5bf998275aff311b9804c1de944a88c219f35db6
Author: Jakub Jelinek <jakub@redhat.com>
Date:   Wed Mar 10 17:40:25 2021 +0100

    testsuite: Fix up pr99305.C test on unsigned_char targets [PR99498]

    On unsigned_char targets, the cast stmt to unsigned char is obviously
    not needed (and shouldn't be there).  But it doesn't hurt to test
    the rest also on targets where char is unsigned.

    2021-03-10  Jakub Jelinek  <jakub@redhat.com>

            PR tree-optimization/99305
            PR testsuite/99498
            * g++.dg/opt/pr99305.C: Don't expect cast to unsigned char on
            unsigned_char effective targets.

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

* [Bug testsuite/99498] [11 regression] new test case g++.dg/opt/pr99305.C in r11-7587 fails
  2021-03-09 22:56 [Bug testsuite/99498] New: [11 regression] new test case g++.dg/opt/pr99305.C in r11-7587 fails seurer at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2021-03-10 16:41 ` cvs-commit at gcc dot gnu.org
@ 2021-03-10 16:43 ` jakub at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: jakub at gcc dot gnu.org @ 2021-03-10 16:43 UTC (permalink / raw)
  To: gcc-bugs

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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
             Status|UNCONFIRMED                 |RESOLVED
           Assignee|unassigned at gcc dot gnu.org      |jakub at gcc dot gnu.org

--- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Should be fixed now.

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

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

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-09 22:56 [Bug testsuite/99498] New: [11 regression] new test case g++.dg/opt/pr99305.C in r11-7587 fails seurer at gcc dot gnu.org
2021-03-10  8:16 ` [Bug testsuite/99498] " rguenth at gcc dot gnu.org
2021-03-10 14:47 ` clyon at gcc dot gnu.org
2021-03-10 16:41 ` cvs-commit at gcc dot gnu.org
2021-03-10 16:43 ` jakub 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).