Commit d97cf33e by Jan Hubicka Committed by Jan Hubicka

* gcc.dg/autopar/pr49960.c: Fix testcase.

From-SVN: r193155
parent e40bc135
2012-11-05 Jan Hubicka <jh@suse.cz>
* gcc.dg/autopar/pr49960.c: Fix testcase.
2012-11-05 Uros Bizjak <ubizjak@gmail.com>
* gcc.dg/tree-ssa/cunroll-9.c: Dump cunrolli details.
......
......@@ -11,6 +11,11 @@ void MRTRBR(int MA_1, int NA_1, int MB_1)
{
int i,j, t,k;
/* At the moment we are not able to hoist the loop headers out of the loop
nest. */
if (MA_1 < 4 || NA_1 < 4 || MB_1 < 4)
return;
/* The outer most loop is not parallel because for different k's there
is write-write dependency for T[i][j]. */
......
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