(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
960514-1.c
       1  struct s {
       2    unsigned long long t[5];
       3  };
       4  
       5  void
       6  f (struct s *d, unsigned long long *l)
       7  {
       8    int i;
       9  
      10    for (i = 0; i < 5; i++)
      11      d->t[i] += l[i];
      12  }