public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/110829] New: [13/14 Regression] FAIL: gcc.dg/pr56837.c scan-tree-dump-times optimized "memset ..c, 68, 16384.;"  1
@ 2023-07-27 10:33 rguenth at gcc dot gnu.org
  2023-07-27 10:34 ` [Bug tree-optimization/110829] " rguenth at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: rguenth at gcc dot gnu.org @ 2023-07-27 10:33 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 110829
           Summary: [13/14 Regression] FAIL: gcc.dg/pr56837.c
                    scan-tree-dump-times optimized "memset ..c, 68,
                    16384.;"  1
           Product: gcc
           Version: 13.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: rguenth at gcc dot gnu.org
  Target Milestone: ---

After r13-1762-gf9d4c3b45c5ed5 the 

_Complex double c[N];

void
fc (void)
{
  int i;
  for (i = 0; i < N; i++)
    c[i] = 747708026454360457216.0 + 747708026454360457216.0i;
}

part of the testcase fails to be recognized as memset since we lower
the complex store to a component-wise store to enable vectorization.

loop distribution doesn't yet handle merging stores as part of
its pattern recognition for memset, memcpy or memmove.

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

* [Bug tree-optimization/110829] [13/14 Regression] FAIL: gcc.dg/pr56837.c scan-tree-dump-times optimized "memset ..c, 68, 16384.;"  1
  2023-07-27 10:33 [Bug tree-optimization/110829] New: [13/14 Regression] FAIL: gcc.dg/pr56837.c scan-tree-dump-times optimized "memset ..c, 68, 16384.;" 1 rguenth at gcc dot gnu.org
@ 2023-07-27 10:34 ` rguenth at gcc dot gnu.org
  2023-07-27 10:36 ` cvs-commit at gcc dot gnu.org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: rguenth at gcc dot gnu.org @ 2023-07-27 10:34 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |13.3
           Keywords|                            |xfail

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
I'm XFAILing the (sub-)testcase.

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

* [Bug tree-optimization/110829] [13/14 Regression] FAIL: gcc.dg/pr56837.c scan-tree-dump-times optimized "memset ..c, 68, 16384.;"  1
  2023-07-27 10:33 [Bug tree-optimization/110829] New: [13/14 Regression] FAIL: gcc.dg/pr56837.c scan-tree-dump-times optimized "memset ..c, 68, 16384.;" 1 rguenth at gcc dot gnu.org
  2023-07-27 10:34 ` [Bug tree-optimization/110829] " rguenth at gcc dot gnu.org
@ 2023-07-27 10:36 ` cvs-commit at gcc dot gnu.org
  2023-07-27 10:37 ` cvs-commit at gcc dot gnu.org
  2024-03-07 23:28 ` law at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2023-07-27 10:36 UTC (permalink / raw)
  To: gcc-bugs

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

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

https://gcc.gnu.org/g:41482832ad0aeaa0e4ae2f8d2beff17023cd00bf

commit r14-2816-g41482832ad0aeaa0e4ae2f8d2beff17023cd00bf
Author: Richard Biener <rguenther@suse.de>
Date:   Thu Jul 27 12:34:34 2023 +0200

    XFAIL parts broken deliberately by r13-1762-gf9d4c3b45c5ed5

    The following XFAILs recognizing a complex store as memset.

            PR tree-optimization/110829
            * gcc.dg/pr56837.c: XFAIL part of the testcase.

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

* [Bug tree-optimization/110829] [13/14 Regression] FAIL: gcc.dg/pr56837.c scan-tree-dump-times optimized "memset ..c, 68, 16384.;"  1
  2023-07-27 10:33 [Bug tree-optimization/110829] New: [13/14 Regression] FAIL: gcc.dg/pr56837.c scan-tree-dump-times optimized "memset ..c, 68, 16384.;" 1 rguenth at gcc dot gnu.org
  2023-07-27 10:34 ` [Bug tree-optimization/110829] " rguenth at gcc dot gnu.org
  2023-07-27 10:36 ` cvs-commit at gcc dot gnu.org
@ 2023-07-27 10:37 ` cvs-commit at gcc dot gnu.org
  2024-03-07 23:28 ` law at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2023-07-27 10:37 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #3 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The releases/gcc-13 branch has been updated by Richard Biener
<rguenth@gcc.gnu.org>:

https://gcc.gnu.org/g:00c806ea70406e6e67170e51095533dcb8a20cf8

commit r13-7613-g00c806ea70406e6e67170e51095533dcb8a20cf8
Author: Richard Biener <rguenther@suse.de>
Date:   Thu Jul 27 12:34:34 2023 +0200

    XFAIL parts broken deliberately by r13-1762-gf9d4c3b45c5ed5

    The following XFAILs recognizing a complex store as memset.

            PR tree-optimization/110829
            * gcc.dg/pr56837.c: XFAIL part of the testcase.

    (cherry picked from commit 41482832ad0aeaa0e4ae2f8d2beff17023cd00bf)

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

* [Bug tree-optimization/110829] [13/14 Regression] FAIL: gcc.dg/pr56837.c scan-tree-dump-times optimized "memset ..c, 68, 16384.;"  1
  2023-07-27 10:33 [Bug tree-optimization/110829] New: [13/14 Regression] FAIL: gcc.dg/pr56837.c scan-tree-dump-times optimized "memset ..c, 68, 16384.;" 1 rguenth at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2023-07-27 10:37 ` cvs-commit at gcc dot gnu.org
@ 2024-03-07 23:28 ` law at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: law at gcc dot gnu.org @ 2024-03-07 23:28 UTC (permalink / raw)
  To: gcc-bugs

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

Jeffrey A. Law <law at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |law at gcc dot gnu.org
           Priority|P3                          |P2

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

end of thread, other threads:[~2024-03-07 23:28 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-27 10:33 [Bug tree-optimization/110829] New: [13/14 Regression] FAIL: gcc.dg/pr56837.c scan-tree-dump-times optimized "memset ..c, 68, 16384.;" 1 rguenth at gcc dot gnu.org
2023-07-27 10:34 ` [Bug tree-optimization/110829] " rguenth at gcc dot gnu.org
2023-07-27 10:36 ` cvs-commit at gcc dot gnu.org
2023-07-27 10:37 ` cvs-commit at gcc dot gnu.org
2024-03-07 23:28 ` law 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).