[llvm] r179565 - Fix the internal link.

Nadav Rotem nrotem at apple.com
Mon Apr 15 15:11:07 PDT 2013


Author: nadav
Date: Mon Apr 15 17:11:07 2013
New Revision: 179565

URL: http://llvm.org/viewvc/llvm-project?rev=179565&view=rev
Log:
Fix the internal link.

Modified:
    llvm/trunk/docs/Vectorizers.rst

Modified: llvm/trunk/docs/Vectorizers.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/Vectorizers.rst?rev=179565&r1=179564&r2=179565&view=diff
==============================================================================
--- llvm/trunk/docs/Vectorizers.rst (original)
+++ llvm/trunk/docs/Vectorizers.rst Mon Apr 15 17:11:07 2013
@@ -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





More information about the llvm-commits mailing list