(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
torture/
pr52638.C
// { dg-do compile }
// { dg-options "-ftree-vectorize" }

void
bar (bool * b, bool * e, bool t)
{
  while (b < e)
    *b++ = t;
}

void
foo (bool * b, bool * e, bool t)
{
  bar (b, e, true);
}