@@ -1,5 +1,10 @@
2010-08-20 Sebastian Pop <sebastian.pop@amd.com>
+ PR middle-end/45230
+ * gcc.dg/graphite/id-pr45230.c: New.
+
+2010-08-20 Sebastian Pop <sebastian.pop@amd.com>
+
* tree-scalar-evolution.c (instantiate_array_ref): New.
(instantiate_scev_r): Also handle ARRAY_REFs.
new file mode 100644
@@ -0,0 +1,14 @@
+unsigned char buf[10];
+main ()
+{
+ unsigned off1, len, i;
+ unsigned char *p1;
+ for (len = 0; len < 8; len++)
+ {
+ p1 = buf;
+ for (i = 0; i < off1; i++)
+ *p1++ = '\0';
+ for (i = 0; i < len; i++)
+ *p1++ = 'a';
+ }
+}