diff options
| author | Arnold Schwaighofer <aschwaighofer@apple.com> | 2014-03-12 23:58:07 +0000 |
|---|---|---|
| committer | Arnold Schwaighofer <aschwaighofer@apple.com> | 2014-03-12 23:58:07 +0000 |
| commit | 9ab93ac6d4ac593f13044de91c2931b58d39c99f (patch) | |
| tree | 5502a936d23ae99c8cb9553dc99894d5530ed6c5 | |
| parent | 23b95f06e1a76cdde2e239b9f235a7772fe4c90f (diff) | |
| download | bcm5719-llvm-9ab93ac6d4ac593f13044de91c2931b58d39c99f.tar.gz bcm5719-llvm-9ab93ac6d4ac593f13044de91c2931b58d39c99f.zip | |
Fix whitespace in vectorizer example
llvm-svn: 203738
| -rw-r--r-- | llvm/docs/Vectorizers.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/Vectorizers.rst b/llvm/docs/Vectorizers.rst index 823fd9e6702..887ccaa8f81 100644 --- a/llvm/docs/Vectorizers.rst +++ b/llvm/docs/Vectorizers.rst @@ -184,7 +184,7 @@ that scatter/gathers memory. int foo(int * A, int * B, int n) { for (intptr_t i = 0; i < n; ++i) - A[i] += B[i*4]; + A[i] += B[i * 4]; } In many situations the cost model will inform LLVM that this is not beneficial |

