Commit 5e4f82ab by Sebastian Pop Committed by Sebastian Pop

add testcase

From-SVN: r228401
parent 9d85345a
2015-10-02 Sebastian Pop <s.pop@samsung.com>
* gcc.dg/graphite/scop-23.c: New.
2015-10-02 Kirill Yukhin <kirill.yukhin@intel.com>
* gcc.target/i386/builtin_target.c: Handle "avx512ifma"
......
int toto()
{
int i,j, b;
int a[100];
if (i == 20)
{
for (j = 0; j <= 20; j++)
a[j] = b + i;
for (j = 2; j <= 23; j++)
a[j] = b + i;
b = 3;
}
else if (i == 12)
{
if (i == 30)
{
for (j = 0; j <= 30; j++)
a[j] = b + i;
b = 5;
}
else
{
for (j = 0; j <= 40; j++)
a[j] = b + i;
b = 8;
}
}
else if (i == 10)
{
b = 8;
}
for (j = 0; j <= 40; j++)
a[j] = b + i;
return a[b];
}
/* { dg-final { scan-tree-dump-times "number of SCoPs: 1" 1 "graphite"} } */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment