(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
vect/
pr97929.c
       1  /* { dg-do compile } */
       2  #include <stdint.h>
       3  #define ARR_SIZE 1024
       4  extern void foo (int32_t *bar, int16_t a)
       5  {
       6      for( int i = 0; i < ARR_SIZE;i++)
       7      {
       8          bar[i]  = a + 1;
       9      }
      10  }