[llvm-commits] [llvm] r170792 - /llvm/trunk/docs/Vectorizers.rst

Sean Silva silvas at purdue.edu
Thu Dec 20 14:49:13 PST 2012


Author: silvas
Date: Thu Dec 20 16:49:13 2012
New Revision: 170792

URL: http://llvm.org/viewvc/llvm-project?rev=170792&view=rev
Log:
docs: actually indent these consistently

Modified:
    llvm/trunk/docs/Vectorizers.rst

Modified: llvm/trunk/docs/Vectorizers.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/Vectorizers.rst?rev=170792&r1=170791&r2=170792&view=diff
==============================================================================
--- llvm/trunk/docs/Vectorizers.rst (original)
+++ llvm/trunk/docs/Vectorizers.rst Thu Dec 20 16:49:13 2012
@@ -166,7 +166,7 @@
 
   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 @@
 
   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





More information about the llvm-commits mailing list