public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/113863] New: [14 Regression] ICE verify_ssa failed with -O3 -msse4.1 since r14-8768
@ 2024-02-10 13:38 ppalka at gcc dot gnu.org
  2024-02-10 20:29 ` [Bug tree-optimization/113863] " pinskia at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: ppalka at gcc dot gnu.org @ 2024-02-10 13:38 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 113863
           Summary: [14 Regression] ICE verify_ssa failed with -O3
                    -msse4.1 since r14-8768
           Product: gcc
           Version: 14.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ppalka at gcc dot gnu.org
  Target Milestone: ---

$ cat sort.cc
void test_sort_helper(int *);
int test_sort_driver_driver_real_last;
void test_sort_driver_driver(int start, int *e, int *f) {
  for (int *l = e; l > f;) {
    *--l = start;                                   
    if (f == l)                                     
      test_sort_helper(&test_sort_driver_driver_real_last);
    if (start)                                      
      test_sort_driver_driver(start - 1, e, f);
  }                                                 
}                                                   

$ gcc -O3 -msse4.1 sort.ii
sort.ii: In function ‘void test_sort_driver_driver(int, int*, int*)’:
sort.ii:3:6: error: definition in block 167 does not dominate use in block 166
    3 | void test_sort_driver_driver(int start, int *e, int *f) {
      |      ^~~~~~~~~~~~~~~~~~~~~~~

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

end of thread, other threads:[~2024-02-12 10:53 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-10 13:38 [Bug tree-optimization/113863] New: [14 Regression] ICE verify_ssa failed with -O3 -msse4.1 since r14-8768 ppalka at gcc dot gnu.org
2024-02-10 20:29 ` [Bug tree-optimization/113863] " pinskia at gcc dot gnu.org
2024-02-10 20:31 ` pinskia at gcc dot gnu.org
2024-02-12  8:43 ` rguenth at gcc dot gnu.org
2024-02-12 10:53 ` cvs-commit at gcc dot gnu.org
2024-02-12 10:53 ` rguenth 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).