summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorEli Friedman <efriedma@codeaurora.org>2017-05-31 23:02:55 +0000
committerEli Friedman <efriedma@codeaurora.org>2017-05-31 23:02:55 +0000
commit8a5dfea89d1e1b4f93171d123a2870d9dcb54b9d (patch)
treea93012c1e50b63a0fe5fd6ef9636229bab8a36c9 /docs
parentfc91844565b95247dec9df04892e078962f214db (diff)
[docs] Update name of vectorization interleave flag.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@304370 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/Vectorizers.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/Vectorizers.rst b/docs/Vectorizers.rst
index 317271af4032..92d6200e169f 100644
--- a/docs/Vectorizers.rst
+++ b/docs/Vectorizers.rst
@@ -44,12 +44,12 @@ Users can control the vectorization SIMD width using the command line flag "-for
$ clang -mllvm -force-vector-width=8 ...
$ opt -loop-vectorize -force-vector-width=8 ...
-Users can control the unroll factor using the command line flag "-force-vector-unroll"
+Users can control the unroll factor using the command line flag "-force-vector-interleave"
.. code-block:: console
- $ clang -mllvm -force-vector-unroll=2 ...
- $ opt -loop-vectorize -force-vector-unroll=2 ...
+ $ clang -mllvm -force-vector-interleave=2 ...
+ $ opt -loop-vectorize -force-vector-interleave=2 ...
Pragma loop hint directives
^^^^^^^^^^^^^^^^^^^^^^^^^^^