aboutsummaryrefslogtreecommitdiffstats
path: root/docs/Vectorizers.rst
diff options
context:
space:
mode:
authorNadav Rotem <nrotem@apple.com>2013-04-15 22:11:07 +0000
committerNadav Rotem <nrotem@apple.com>2013-04-15 22:11:07 +0000
commit96e0b96a9104a4df0bb3e19f91c1493db2b7ab44 (patch)
tree577e3a533ccf8509a9da8f87a6855890073c3e19 /docs/Vectorizers.rst
parent74cd12b73ae5d3def15cc96c62b7fd4308cb9f2f (diff)
downloadexternal_llvm-96e0b96a9104a4df0bb3e19f91c1493db2b7ab44.zip
external_llvm-96e0b96a9104a4df0bb3e19f91c1493db2b7ab44.tar.gz
external_llvm-96e0b96a9104a4df0bb3e19f91c1493db2b7ab44.tar.bz2
Fix the internal link.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179565 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/Vectorizers.rst')
-rw-r--r--docs/Vectorizers.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/Vectorizers.rst b/docs/Vectorizers.rst
index 1fb4b9c..d5c286a 100644
--- a/docs/Vectorizers.rst
+++ b/docs/Vectorizers.rst
@@ -5,9 +5,9 @@ Auto-Vectorization in LLVM
.. contents::
:local:
-LLVM has two vectorizers: The :ref:`Loop Vectorizer <loop-vectorizer>`,
-which operates on Loops, and the :ref:`Basic Block Vectorizer
-<bb-vectorizer>`, which optimizes straight-line code. These vectorizers
+LLVM has two kind vectorizers: The :ref:`Loop Vectorizer <loop-vectorizer>`,
+which operates on Loops, and the :ref:`SLP Vectorizer
+<slp-vectorizer>`, which optimizes straight-line code. These vectorizers
focus on different optimization opportunities and use different techniques.
The BB vectorizer merges multiple scalars that are found in the code into
vectors while the Loop Vectorizer widens instructions in the original loop