2010-12-07 Sebastian Pop <sebastian.pop@amd.com>
PR tree-optimization/44676
* gcc.dg/graphite/id-pr44676.c: New.
From-SVN: r167555
+2010-12-07 Sebastian Pop <sebastian.pop@amd.com>
+
+ PR tree-optimization/44676
+ * gcc.dg/graphite/id-pr44676.c: New.
+
2010-12-07 Jakub Jelinek <jakub@redhat.com>
Backport from mainline
--- /dev/null
+/* { 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;
+}