public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/103477] New: [12 regression] gcc.dg/tree-ssa/pr103345.c fails after r12-5453
@ 2021-11-29 20:03 seurer at gcc dot gnu.org
  2021-11-30  7:05 ` [Bug testsuite/103477] " 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-11-29 20:03 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 103477
           Summary: [12 regression] gcc.dg/tree-ssa/pr103345.c fails after
                    r12-5453
           Product: gcc
           Version: 12.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:a944b5dec3adb28ed199234d2116145ca9010d6a, r12-5453
make  -k check-gcc RUNTESTFLAGS="--target_board=unix'{-m32,-m64}'
tree-ssa.exp=gcc.dg/tree-ssa/pr103345.c"
FAIL: gcc.dg/tree-ssa/pr103345.c scan-tree-dump-times bswap "32 bit load in
target endianness found" 3
FAIL: gcc.dg/tree-ssa/pr103345.c scan-tree-dump-times bswap "32 bit load in
target endianness found" 3

This is on a powerpc64 BE machine and both 32 bit and 64 bit runs fail.



commit a944b5dec3adb28ed199234d2116145ca9010d6a
Author: Roger Sayle <roger@nextmovesoftware.com>
Date:   Mon Nov 22 18:15:36 2021 +0000

    tree-optimization/103345: Improved load merging.

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

* [Bug testsuite/103477] [12 regression] gcc.dg/tree-ssa/pr103345.c fails after r12-5453
  2021-11-29 20:03 [Bug tree-optimization/103477] New: [12 regression] gcc.dg/tree-ssa/pr103345.c fails after r12-5453 seurer at gcc dot gnu.org
@ 2021-11-30  7:05 ` rguenth at gcc dot gnu.org
  2021-11-30  9:53 ` roger at nextmovesoftware dot com
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: rguenth at gcc dot gnu.org @ 2021-11-30  7:05 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|tree-optimization           |testsuite
           Priority|P3                          |P1
   Target Milestone|---                         |12.0

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
probably endianess issue

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

* [Bug testsuite/103477] [12 regression] gcc.dg/tree-ssa/pr103345.c fails after r12-5453
  2021-11-29 20:03 [Bug tree-optimization/103477] New: [12 regression] gcc.dg/tree-ssa/pr103345.c fails after r12-5453 seurer at gcc dot gnu.org
  2021-11-30  7:05 ` [Bug testsuite/103477] " rguenth at gcc dot gnu.org
@ 2021-11-30  9:53 ` roger at nextmovesoftware dot com
  2021-11-30 10:37 ` cvs-commit at gcc dot gnu.org
  2021-11-30 14:22 ` marxin at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: roger at nextmovesoftware dot com @ 2021-11-30  9:53 UTC (permalink / raw)
  To: gcc-bugs

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

Roger Sayle <roger at nextmovesoftware dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |roger at nextmovesoftware dot com
   Last reconfirmed|                            |2021-11-30
             Status|UNCONFIRMED                 |ASSIGNED
     Ever confirmed|0                           |1
           Assignee|unassigned at gcc dot gnu.org      |roger at nextmovesoftware dot com

--- Comment #2 from Roger Sayle <roger at nextmovesoftware dot com> ---
Doh!  There's a typo/mistake in the new testcase.  I'll push a fix shortly. 
Sorry for the inconvenience.

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

* [Bug testsuite/103477] [12 regression] gcc.dg/tree-ssa/pr103345.c fails after r12-5453
  2021-11-29 20:03 [Bug tree-optimization/103477] New: [12 regression] gcc.dg/tree-ssa/pr103345.c fails after r12-5453 seurer at gcc dot gnu.org
  2021-11-30  7:05 ` [Bug testsuite/103477] " rguenth at gcc dot gnu.org
  2021-11-30  9:53 ` roger at nextmovesoftware dot com
@ 2021-11-30 10:37 ` cvs-commit at gcc dot gnu.org
  2021-11-30 14:22 ` marxin at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2021-11-30 10:37 UTC (permalink / raw)
  To: gcc-bugs

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

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

https://gcc.gnu.org/g:92de188ea3d36ec012b6d42959d4722e42524256

commit r12-5616-g92de188ea3d36ec012b6d42959d4722e42524256
Author: Roger Sayle <roger@nextmovesoftware.com>
Date:   Tue Nov 30 10:25:35 2021 +0000

    [Committed] PR testsuite/103477: Fix big-endian mistake in new test case.

    I missed a spot when adding the "#if __BYTE_ORDER__ == ..." guards to
    the new test case for PR tree-optimization/103345.  Committed as obvious.

    2021-11-30  Roger Sayle  <roger@nextmovesoftware.com>

    gcc/testsuite/ChangeLog
            PR testsuite/103477
            * gcc.dg/tree-ssa/pr103345.c: Correct xor test for big-endian.

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

* [Bug testsuite/103477] [12 regression] gcc.dg/tree-ssa/pr103345.c fails after r12-5453
  2021-11-29 20:03 [Bug tree-optimization/103477] New: [12 regression] gcc.dg/tree-ssa/pr103345.c fails after r12-5453 seurer at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2021-11-30 10:37 ` cvs-commit at gcc dot gnu.org
@ 2021-11-30 14:22 ` marxin at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: marxin at gcc dot gnu.org @ 2021-11-30 14:22 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
             Status|ASSIGNED                    |RESOLVED
                 CC|                            |marxin at gcc dot gnu.org

--- Comment #4 from Martin Liška <marxin at gcc dot gnu.org> ---
Fixed.

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

end of thread, other threads:[~2021-11-30 14:22 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-29 20:03 [Bug tree-optimization/103477] New: [12 regression] gcc.dg/tree-ssa/pr103345.c fails after r12-5453 seurer at gcc dot gnu.org
2021-11-30  7:05 ` [Bug testsuite/103477] " rguenth at gcc dot gnu.org
2021-11-30  9:53 ` roger at nextmovesoftware dot com
2021-11-30 10:37 ` cvs-commit at gcc dot gnu.org
2021-11-30 14:22 ` 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).