From 5e8163349931f98830f2a24baedddaee539f9ccf Mon Sep 17 00:00:00 2001 From: Sean Silva Date: Thu, 20 Dec 2012 22:49:13 +0000 Subject: docs: actually indent these consistently git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170792 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/Vectorizers.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs') diff --git a/docs/Vectorizers.rst b/docs/Vectorizers.rst index fbafe6b081..fe6a986aac 100644 --- a/docs/Vectorizers.rst +++ b/docs/Vectorizers.rst @@ -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 -- cgit v1.2.3