(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
aarch64/
sve/
pr98535.c
       1  /* { dg-options "-O3 -mtune=neoverse-v1" } */
       2  
       3  typedef short a;
       4  
       5  typedef struct {
       6    a b, c, d, e;
       7  } f;
       8  
       9  f *g;
      10  
      11  long h;
      12  
      13  void
      14  i() {
      15    f j;
      16    for (; h; h++)
      17      *g++ = j;
      18  }