summaryrefslogtreecommitdiffstats
path: root/llvm/docs/Vectorizers.rst
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/docs/Vectorizers.rst')
-rw-r--r--llvm/docs/Vectorizers.rst2
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
OpenPOWER on IntegriCloud