Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr52638.C
blob: 3ac76ccc435888608a1d1cf85cc578e4582a84a2 [
file
] [
log
] [
blame
]
// { 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
);
}