(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr108463.c
       1  /* PR rtl-optimization/108463 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-O2 -fsched2-use-superblocks -fcompare-debug -Wno-psabi" } */
       4  
       5  typedef int __attribute__((__vector_size__ (32))) V;
       6  int a;
       7  
       8  void
       9  foo (V v)
      10  {
      11    a--;
      12    v = (V) v;
      13  }