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

            Bug ID: 118569
           Summary: ICE on valid code at -O3 with "-fno-tree-ch
                    -fno-tree-ccp -fno-tree-fre" on x86_64-linux-gnu: in
                    check_loop_closed_ssa_def, at
                    tree-ssa-loop-manip.cc:647
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: zhendong.su at inf dot ethz.ch
  Target Milestone: ---

Here is another variant that still triggers: 

[598] % gcctk -v
Using built-in specs.
COLLECT_GCC=gcctk
COLLECT_LTO_WRAPPER=/local/suz-local/software/local/gcc-trunk/libexec/gcc/x86_64-pc-linux-gnu/15.0.1/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: ../gcc-trunk/configure --disable-bootstrap
--enable-checking=yes --prefix=/local/suz-local/software/local/gcc-trunk
--enable-sanitizers --enable-languages=c,c++ --disable-werror --enable-multilib
Thread model: posix
Supported LTO compression algorithms: zlib
gcc version 15.0.1 20250120 (experimental) (GCC)
[599] %
[599] % gcctk -O3 -fno-tree-ch -fno-tree-ccp -fno-tree-fre small.c
during GIMPLE pass: cunroll
small.c: In function ‘main’:
small.c:3:5: internal compiler error: in check_loop_closed_ssa_def, at
tree-ssa-loop-manip.cc:647
    3 | int main() {
      |     ^~~~
0x26d8716 internal_error(char const*, ...)
        ../../gcc-trunk/gcc/diagnostic-global-context.cc:517
0xac3780 fancy_abort(char const*, int, char const*)
        ../../gcc-trunk/gcc/diagnostic.cc:1722
0x900647 check_loop_closed_ssa_def
        ../../gcc-trunk/gcc/tree-ssa-loop-manip.cc:647
0x13f17b4 check_loop_closed_ssa_bb
        ../../gcc-trunk/gcc/tree-ssa-loop-manip.cc:661
0x13f33ae verify_loop_closed_ssa(bool, loop*)
        ../../gcc-trunk/gcc/tree-ssa-loop-manip.cc:697
0x13f33ae verify_loop_closed_ssa(bool, loop*)
        ../../gcc-trunk/gcc/tree-ssa-loop-manip.cc:681
0x13d9e19 tree_unroll_loops_completely
        ../../gcc-trunk/gcc/tree-ssa-loop-ivcanon.cc:1623
0x13d9eb5 execute
        ../../gcc-trunk/gcc/tree-ssa-loop-ivcanon.cc:1727
0x13d9eb5 execute
        ../../gcc-trunk/gcc/tree-ssa-loop-ivcanon.cc:1717
Please submit a full bug report, with preprocessed source (by using
-freport-bug).
Please include the complete backtrace with any bug report.
See <https://gcc.gnu.org/bugs/> for instructions.
[600] %
[600] % cat small.c
volatile int a;
int b, c, d, e, f, g;
int main() {
  int i = 2, j = 1;
k:
  if (!e)
    ;
  else {
    short l = 1;
    if (0)
    m:
      d = g;
    f = 0;
    for (; f < 2; f++) {
      if (f)
        for (; j < 2; j++)
          if (i)
            goto m;
      a;
      if (l)
        continue;
      i = 0;
      while (c)
        l++;
    }
    g = 0;
  }
  if (b) {
    i = 1;
    goto k;
  }
  return 0;
}

Reply via email to