public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug testsuite/99636] New: [10/11 regression] gcc.dg/strlenopt-80.c fails for 32 bits
@ 2021-03-17 20:44 seurer at gcc dot gnu.org
  2021-03-18  9:04 ` [Bug testsuite/99636] " rguenth at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: seurer at gcc dot gnu.org @ 2021-03-17 20:44 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 99636
           Summary: [10/11 regression] gcc.dg/strlenopt-80.c fails for 32
                    bits
           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:27c14dbc6b01d5b7238d9d6893bcddce19b7056c, r10-3920
make  -k check-gcc RUNTESTFLAGS="--target_board=unix'{-m32}'
dg.exp=gcc.dg/strlenopt-80.c"
FAIL: gcc.dg/strlenopt-80.c scan-tree-dump-times optimized "failure_on_line
\\(" 0
# of expected passes            1
# of unexpected failures        1

32 bit fails.  This is on powerpc64 BE.  Still fails today for both trunk and
gcc 10.

see also PR92128

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

* [Bug testsuite/99636] [10/11 regression] gcc.dg/strlenopt-80.c fails for 32 bits
  2021-03-17 20:44 [Bug testsuite/99636] New: [10/11 regression] gcc.dg/strlenopt-80.c fails for 32 bits seurer at gcc dot gnu.org
@ 2021-03-18  9:04 ` rguenth at gcc dot gnu.org
  2021-03-18 15:19 ` cvs-commit at gcc dot gnu.org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: rguenth at gcc dot gnu.org @ 2021-03-18  9:04 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |10.3

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

* [Bug testsuite/99636] [10/11 regression] gcc.dg/strlenopt-80.c fails for 32 bits
  2021-03-17 20:44 [Bug testsuite/99636] New: [10/11 regression] gcc.dg/strlenopt-80.c fails for 32 bits seurer at gcc dot gnu.org
  2021-03-18  9:04 ` [Bug testsuite/99636] " rguenth at gcc dot gnu.org
@ 2021-03-18 15:19 ` cvs-commit at gcc dot gnu.org
  2021-03-18 15:22 ` [Bug testsuite/99636] [10 Regression] " jakub at gcc dot gnu.org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2021-03-18 15:19 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #1 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:89d44a9f3b9ab97634b7ef894e2c83ebd83582a8

commit r11-7719-g89d44a9f3b9ab97634b7ef894e2c83ebd83582a8
Author: Jakub Jelinek <jakub@redhat.com>
Date:   Thu Mar 18 16:14:47 2021 +0100

    testsuite: Fix up strlenopt-80.c on powerpc [PR99636]

    Similar issue as in strlenopt-73.c, various spots in this test rely
    on MOVE_MAX >= 8, this time it uses a target selector to pick up a couple
    of targets, and all of them but powerpc 32-bit satisfy it, but powerpc
    32-bit have MOVE_MAX just 4.

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

            PR testsuite/99636
            * gcc.dg/strlenopt-80.c: For powerpc*-*-*, only enable for lp64.

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

* [Bug testsuite/99636] [10 Regression] gcc.dg/strlenopt-80.c fails for 32 bits
  2021-03-17 20:44 [Bug testsuite/99636] New: [10/11 regression] gcc.dg/strlenopt-80.c fails for 32 bits seurer at gcc dot gnu.org
  2021-03-18  9:04 ` [Bug testsuite/99636] " rguenth at gcc dot gnu.org
  2021-03-18 15:19 ` cvs-commit at gcc dot gnu.org
@ 2021-03-18 15:22 ` jakub at gcc dot gnu.org
  2021-03-19 23:31 ` cvs-commit at gcc dot gnu.org
  2021-03-20  8:10 ` jakub at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: jakub at gcc dot gnu.org @ 2021-03-18 15:22 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[10/11 regression]          |[10 Regression]
                   |gcc.dg/strlenopt-80.c fails |gcc.dg/strlenopt-80.c fails
                   |for 32 bits                 |for 32 bits

--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Fixed on the trunk so far.

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

* [Bug testsuite/99636] [10 Regression] gcc.dg/strlenopt-80.c fails for 32 bits
  2021-03-17 20:44 [Bug testsuite/99636] New: [10/11 regression] gcc.dg/strlenopt-80.c fails for 32 bits seurer at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2021-03-18 15:22 ` [Bug testsuite/99636] [10 Regression] " jakub at gcc dot gnu.org
@ 2021-03-19 23:31 ` cvs-commit at gcc dot gnu.org
  2021-03-20  8:10 ` jakub at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2021-03-19 23:31 UTC (permalink / raw)
  To: gcc-bugs

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

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

https://gcc.gnu.org/g:752df7abc9e4ad344d7107d55ff62dd8e765c4d5

commit r10-9490-g752df7abc9e4ad344d7107d55ff62dd8e765c4d5
Author: Jakub Jelinek <jakub@redhat.com>
Date:   Thu Mar 18 16:14:47 2021 +0100

    testsuite: Fix up strlenopt-80.c on powerpc [PR99636]

    Similar issue as in strlenopt-73.c, various spots in this test rely
    on MOVE_MAX >= 8, this time it uses a target selector to pick up a couple
    of targets, and all of them but powerpc 32-bit satisfy it, but powerpc
    32-bit have MOVE_MAX just 4.

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

            PR testsuite/99636
            * gcc.dg/strlenopt-80.c: For powerpc*-*-*, only enable for lp64.

    (cherry picked from commit 89d44a9f3b9ab97634b7ef894e2c83ebd83582a8)

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

* [Bug testsuite/99636] [10 Regression] gcc.dg/strlenopt-80.c fails for 32 bits
  2021-03-17 20:44 [Bug testsuite/99636] New: [10/11 regression] gcc.dg/strlenopt-80.c fails for 32 bits seurer at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2021-03-19 23:31 ` cvs-commit at gcc dot gnu.org
@ 2021-03-20  8:10 ` jakub at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: jakub at gcc dot gnu.org @ 2021-03-20  8:10 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

--- Comment #4 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Fixed for 10.3 too.

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

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

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-17 20:44 [Bug testsuite/99636] New: [10/11 regression] gcc.dg/strlenopt-80.c fails for 32 bits seurer at gcc dot gnu.org
2021-03-18  9:04 ` [Bug testsuite/99636] " rguenth at gcc dot gnu.org
2021-03-18 15:19 ` cvs-commit at gcc dot gnu.org
2021-03-18 15:22 ` [Bug testsuite/99636] [10 Regression] " jakub at gcc dot gnu.org
2021-03-19 23:31 ` cvs-commit at gcc dot gnu.org
2021-03-20  8:10 ` 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).