diff options
author | Sean Silva <silvas@purdue.edu> | 2012-12-20 22:49:13 +0000 |
---|---|---|
committer | Sean Silva <silvas@purdue.edu> | 2012-12-20 22:49:13 +0000 |
commit | 5e8163349931f98830f2a24baedddaee539f9ccf (patch) | |
tree | 5e585aab1564250fc8d7ce3d2a47aaf3cd43f186 | |
parent | 9baa6e4c36565855bbdc4548ca16105f10aaf8ac (diff) | |
download | external_llvm-5e8163349931f98830f2a24baedddaee539f9ccf.zip external_llvm-5e8163349931f98830f2a24baedddaee539f9ccf.tar.gz external_llvm-5e8163349931f98830f2a24baedddaee539f9ccf.tar.bz2 |
docs: actually indent these consistently
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170792 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/Vectorizers.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/Vectorizers.rst b/docs/Vectorizers.rst index fbafe6b..fe6a986 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 |