(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
ipa/
ipa-icf-38a.c
       1  /* { dg-skip-if "" { *-*-* } } */
       2  
       3  typedef int v4si __attribute__ ((vector_size (16)));
       4  
       5  __attribute__ ((noinline))
       6  int bar(void)
       7  {
       8    v4si a = {1,2,3,4};
       9    v4si b = {3,2,1,4};
      10    v4si c;
      11  
      12    return 54;
      13  }
      14