blob: 8be0cd01201fa06295ac737481078a13621966e0 [file] [log] [blame]
/* PR77366 */
/* { dg-do compile } */
/* { dg-options "-O3 -fdump-tree-split-paths-details" } */
void
foo(unsigned int size, unsigned int *state)
{
unsigned int i;
for(i = 0; i < size; i++)
{
if(state[i] & 1)
state[i] ^= 1;
}
}
/* { dg-final { scan-tree-dump-times "Duplicating join block" 0 "split-paths" } } */