This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Patch] Fix vectorization test case.


Hi,

One of the loops in gcc/testsuite/gcc.dg/vect/vect-1.c is suspect. A
two-level nested loop in foo() uses the same index variable for both
loops, but uses a different variable to access the matrix inside the
loop. I presume this is a typo as this loop is expected to vectorize.
Attached is a patch that fixes this.

--
Tejas Belagod
ARM.

gcc/testsuite

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

	* gcc.dg/vect/vect-1.c (foo): Change loop index variable.
Index: vect-1.c
===================================================================
--- vect-1.c	(revision 163337)
+++ vect-1.c	(working copy)
@@ -37,7 +37,7 @@
   /* Vectorizable.  */
   diff = 0;
   for (i = 0; i < N; i++) {
-    for (i = 0; i < N; i++) {
+    for (j = 0; j < N; j++) {
       diff += (image[i][j] - block[i][j]);
     }
   }

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]