(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr90275-2.c
       1  
       2  void
       3  a() {
       4    short *b;
       5    short c;
       6    long long *d = a;
       7    for (;;) {
       8      long long *e = a;
       9      (*d *= *e - c) / *b ?: (*b = 0);
      10    }
      11  }
      12