mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-22 07:29:20 +08:00
Add missing testcase for PR44676.
2010-12-07 Sebastian Pop <sebastian.pop@amd.com> PR tree-optimization/44676 * gcc.dg/graphite/id-pr44676.c: New. From-SVN: r167554
This commit is contained in:
parent
baddb6779b
commit
8923f55e82
@ -1,4 +1,9 @@
|
||||
2010-12-06 Sebastian Pop <sebastian.pop@amd.com>
|
||||
2010-12-07 Sebastian Pop <sebastian.pop@amd.com>
|
||||
|
||||
PR tree-optimization/44676
|
||||
* gcc.dg/graphite/id-pr44676.c: New.
|
||||
|
||||
2010-12-07 Sebastian Pop <sebastian.pop@amd.com>
|
||||
|
||||
PR tree-optimization/42327
|
||||
* gcc.dg/tree-ssa/pr42327.c: New.
|
||||
|
12
gcc/testsuite/gcc.dg/graphite/id-pr44676.c
Normal file
12
gcc/testsuite/gcc.dg/graphite/id-pr44676.c
Normal file
@ -0,0 +1,12 @@
|
||||
/* { dg-options "-O2 -fgraphite-identity -fprofile-generate" } */
|
||||
|
||||
int
|
||||
extend_options (int h, int map, int x, int y, int dx)
|
||||
{
|
||||
while (dx--)
|
||||
{
|
||||
if (x != dx && y != -x)
|
||||
map++;
|
||||
}
|
||||
return map;
|
||||
}
|
Loading…
Reference in New Issue
Block a user