Commit 3d125479 by Sebastian Pop Committed by Sebastian Pop

Fix testcase: call abort.

2010-06-23  Sebastian Pop  <sebastian.pop@amd.com>

	* gcc.dg/graphite/run-id-2.c: Call abort.

From-SVN: r163124
parent 4aa9a167
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.
......
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-11 Janus Weil <janus@gcc.gnu.org>
......
......@@ -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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment