]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Add interchange testcase.
authorSebastian Pop <sebastian.pop@amd.com>
Wed, 12 Aug 2009 14:25:32 +0000 (14:25 +0000)
committerSebastian Pop <spop@gcc.gnu.org>
Wed, 12 Aug 2009 14:25:32 +0000 (14:25 +0000)
2009-08-11  Sebastian Pop  <sebastian.pop@amd.com>

* testsuite/gcc.dg/graphite/interchange-9.c: New.

From-SVN: r150688

gcc/ChangeLog.graphite
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/graphite/interchange-9.c [new file with mode: 0644]

index bb1d3ad1b7eab64551ea00f2e027743315a799e8..4c9577f39d01d3eec23789062d5c44e9e2f511df 100644 (file)
@@ -1,3 +1,7 @@
+2009-08-11  Sebastian Pop  <sebastian.pop@amd.com>
+
+       * testsuite/gcc.dg/graphite/interchange-9.c: New.
+
 2009-08-05  Konrad Trifunovic  <konrad.trifunovic@gmail.com>
            Sebastian Pop  <sebastian.pop@amd.com>
 
@@ -41,7 +45,7 @@
        (restore_scattering): New.
        * graphite-sese-to-poly.c (build_pbb_scattering_polyhedrons):
        Initialize PBB_TRANSFORMED and PBB_ORIGINAL.
-       
+
 2009-08-05  Sebastian Pop  <sebastian.pop@amd.com>
 
        * graphite-poly.c (print_pbb): Add parentheses in the pretty print.
index 11309d89c98b0feca44bc740638a9205a188a562..141036a14379d8bade99be52056d18282dbdb3df 100644 (file)
@@ -1,7 +1,11 @@
+2009-08-12  Sebastian Pop  <sebastian.pop@amd.com>
+
+       * gcc.dg/graphite/interchange-9.c: New.
+
 2009-08-12  Richard Guenther  <rguenther@suse.de>
-    
+
        PR rtl-optimization/41033
-       * gcc.dg/pr41033.c: New test. 
+       * gcc.dg/pr41033.c: New test.
 
 2009-08-11  Janus Weil  <janus@gcc.gnu.org>
 
diff --git a/gcc/testsuite/gcc.dg/graphite/interchange-9.c b/gcc/testsuite/gcc.dg/graphite/interchange-9.c
new file mode 100644 (file)
index 0000000..f728d6c
--- /dev/null
@@ -0,0 +1,14 @@
+int
+foo (int *x)
+{
+  int i, j;
+  int sum = 0;
+
+  for (j = 0;  j < 10000; ++j)
+    for (i = 0;  i < 10000; ++i)
+      sum += x[10000 * i + j];
+  return sum;
+}
+
+/* { dg-final { scan-tree-dump-times "will be interchanged" 1 "graphite" { xfail *-*-* } } } */ 
+/* { dg-final { cleanup-tree-dump "graphite" } } */