(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
ipa/
pr103107.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-Og -g -fipa-sra -fno-tree-dce" } */
       3  
       4  typedef int __attribute__((__vector_size__ (8))) V;
       5  V v;
       6  
       7  static void
       8  bar (int i)
       9  {
      10    V l = v + i;
      11  }
      12  
      13  void
      14  foo (void)
      15  {
      16    bar (0);
      17  }