modula2 testsuite: new libc unit test
[official-gcc.git] / gcc / testsuite / g++.dg / torture / pr52638.C
blob3ac76ccc435888608a1d1cf85cc578e4582a84a2
1 // { dg-do compile }
2 // { dg-options "-ftree-vectorize" }
4 void
5 bar (bool * b, bool * e, bool t)
7   while (b < e)
8     *b++ = t;
11 void
12 foo (bool * b, bool * e, bool t)
14   bar (b, e, true);