(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
powerpc/
pr106091.c
       1  /* { dg-options "-O -fnon-call-exceptions -fno-tree-dce -fno-tree-forwprop -w" } */
       2  
       3  /* Verify there is no ICE.  */
       4  
       5  typedef short __attribute__ ((__vector_size__ (64))) V;
       6  V v, w;
       7  
       8  inline V foo (V a, V b);
       9  
      10  V
      11  foo (V a, V b)
      12  {
      13    b &= v < b;
      14    return (V){foo (b, w)[3], (V){}[3]};
      15  }