blob: 27e7fa42c6b73d699bb0fa61f0fdcaa064e13c83 [file] [log] [blame]
/* This test case tests reduction, where the pbbs are duplicated. */
static int __attribute__((noinline))
foo ()
{
int i, res = 0;
for (i = 0; i < 50; i++)
{
if (i >= 25)
res += i;
}
return res;
}
extern void abort ();
int
main (void)
{
int res = foo ();
if (res != 925)
abort ();
return 0;
}