Comments
Patch
@@ -1,5 +1,9 @@
2010-06-23 Sebastian Pop <sebastian.pop@amd.com>
+ * gcc.dg/graphite/run-id-2.c: Call abort.
+
+2010-06-23 Sebastian Pop <sebastian.pop@amd.com>
+
* graphite-sese-to-poly.c (rewrite_phi_out_of_ssa): Always insert out
of SSA copies on edges except for loop->latch.
@@ -1,5 +1,9 @@
2010-08-02 Sebastian Pop <sebastian.pop@amd.com>
+ * gcc.dg/graphite/run-id-2.c: Call abort.
+
+2010-08-02 Sebastian Pop <sebastian.pop@amd.com>
+
* gcc.dg/graphite/id-20.c: New.
2010-08-02 Bernd Schmidt <bernds@codesourcery.com>
@@ -19,9 +19,17 @@ static int __attribute__((noinline)) bar(int n)
return c;
}
+extern void abort ();
+
int main()
{
- return
- foo(0) != 0 || foo(1) != 1 || bar(0) != 0 || bar(1) != 2 || bar(2) != 5;
+ if (foo(0) != 0
+ || foo(1) != 1
+ || bar(0) != 0
+ || bar(1) != 2
+ || bar(2) != 5)
+ abort ();
+
+ return 0;
}
From: spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> 2010-06-23 Sebastian Pop <sebastian.pop@amd.com> * gcc.dg/graphite/run-id-2.c: Call abort. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/graphite@161293 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog.graphite | 4 ++++ gcc/testsuite/ChangeLog | 4 ++++ gcc/testsuite/gcc.dg/graphite/run-id-2.c | 12 ++++++++++-- 3 files changed, 18 insertions(+), 2 deletions(-)