docs: actually indent these consistently
authorSean Silva <silvas@purdue.edu>
Thu, 20 Dec 2012 22:49:13 +0000 (22:49 +0000)
committerSean Silva <silvas@purdue.edu>
Thu, 20 Dec 2012 22:49:13 +0000 (22:49 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170792 91177308-0d34-0410-b5e6-96231b3b80d8

docs/Vectorizers.rst

index fbafe6b081f4b2aa20dc79b413ee479f9ee3fef3..fe6a986aacef726b465a83b8b4133ddf854f9230 100644 (file)
@@ -166,7 +166,7 @@ memory accesses.
 
   int foo(int *A, int *B, int n, int k) {
     for (int i = 0; i < n; ++i)
-        A[i*7] += B[i*k];
+      A[i*7] += B[i*k];
   }
 
 Vectorization of Mixed Types
@@ -180,7 +180,7 @@ vectorization is profitable.
 
   int foo(int *A, char *B, int n, int k) {
     for (int i = 0; i < n; ++i)
-        A[i] += 4 * B[i];
+      A[i] += 4 * B[i];
   }
 
 Vectorization of function calls