(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
vect/
bb-slp-pr97746.c
       1  /* { dg-do compile } */
       2  
       3  int a, b;
       4  short c;
       5  
       6  extern void f (short*);
       7  
       8  void d()
       9  {
      10    short e[2] = {0, 0};
      11    while (a)
      12      {
      13        f(e);
      14        int g = 0 || a, h = 8 && c;
      15        short i = c;
      16        c = h & g;
      17        if (b)
      18  	b = g || i;
      19      }
      20  }