(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
execute/
pr71626-1.c
       1  /* PR middle-end/71626 */
       2  
       3  typedef __INTPTR_TYPE__ V __attribute__((__vector_size__(sizeof (__INTPTR_TYPE__))));
       4  
       5  __attribute__((noinline, noclone)) V
       6  foo ()
       7  {
       8    V v = { (__INTPTR_TYPE__) foo };
       9    return v;
      10  }
      11  
      12  int
      13  main ()
      14  {
      15    V v = foo ();
      16    if (v[0] != (__INTPTR_TYPE__) foo)
      17      __builtin_abort ();
      18    return 0;
      19  }