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

            Bug ID: 108687
           Summary: Non-termination since gcc-13-5630-g881bf8de9b0
           Product: gcc
           Version: 13.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: middle-end
          Assignee: unassigned at gcc dot gnu.org
          Reporter: stefansf at linux dot ibm.com
  Target Milestone: ---

typedef struct { int a[32]; } b;
b c;
int d, e, f;
void g () {
  for (; c.a[f - 1]; f++) {
    e = e * d;
    c.a[f] = f / d;
  }
}

Running gcc -O3 -c t.c on s390x does not terminate. Started with
gcc-13-5630-g881bf8de9b0

Reply via email to