Commit 8ebbe10f by Tejas Belagod Committed by Ramana Radhakrishnan

For Tejas Belagod

2010-08-19  Tejas Belagod  <tejas.belagod@arm.com>

	* gcc.dg/vect/vect-1.c (foo): Change inner loop index
	variable.

From-SVN: r163368
parent c92f1823
2010-08-19 Tejas Belagod <tejas.belagod@arm.com>
* gcc.dg/vect/vect-1.c (foo): Change inner loop index
variable.
2010-08-19 Ian Bolton <ian.bolton@arm.com>
PR target/45070
......
......@@ -37,7 +37,7 @@ foo (int n)
/* Vectorizable. */
diff = 0;
for (i = 0; i < N; i++) {
for (i = 0; i < N; i++) {
for (j = 0; i < N; j++) {
diff += (image[i][j] - block[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