blob: fce181e2feebfd02a26b68eceeca83429a0e738f [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-Ofast -fno-split-loops -fdump-tree-ifcvt-stats-blocks-details" } */
/* { dg-require-visibility "" } */
extern int b[256], y;
void bar (int *, int);
int foo (int x, int n)
{
int i;
int a[128];
for (i = 0; i < n; i++)
{
a[i] = i;
if (x > i)
y = b[i];
}
bar (a, y);
return 0;
}
/* { dg-final { scan-tree-dump-times "Applying if-conversion" 1 "ifcvt" } } */
/* We insert into code
if (LOOP_VECTORIZED (...))
which is folded by vectorizer. Both outgoing edges must have probability
100% so the resulting profile match after folding. */
/* { dg-final { scan-tree-dump-times "Invalid sum of outgoing probabilities 200.0" 1 "ifcvt" } } */
/* { dg-final { scan-tree-dump-times "Invalid sum of incoming counts" 1 "ifcvt" } } */