(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr97238.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O -Wno-psabi -w" } */
       3  
       4  typedef int __attribute__ ((__vector_size__ (8))) V;
       5  int b, c, e;
       6  V d;
       7  
       8  V
       9  foo (void)
      10  {
      11    return (b || e) | c > d | ((b || e) | c > d);
      12  }