Index: docs/LangRef.rst =================================================================== --- docs/LangRef.rst +++ docs/LangRef.rst @@ -7666,7 +7666,7 @@ .. code-block:: c // Let's assume that we vectorize the following loop: - double *A, B; int *C; + double *A, *B; int *C; for (int i = 0; i < size; ++i) { A[i] = B[C[i]]; }