(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr96466.c
       1  /* PR tree-optimization/96466 */
       2  /* { dg-do compile } */
       3  /* { dg-require-effective-target lp64 } */
       4  /* { dg-options "-Og -finline-functions-called-once -fno-tree-ccp" } */
       5  
       6  typedef unsigned long __attribute__ ((__vector_size__ (8))) V;
       7  
       8  V
       9  bar (unsigned long x, V v)
      10  {
      11    v &= x >= v;
      12    return (V) v;
      13  }
      14  
      15  V
      16  foo (void)
      17  {
      18    return bar (5, (V) 4441221375);
      19  }