diff --git a/llvm/docs/GettingInvolved.rst b/llvm/docs/GettingInvolved.rst --- a/llvm/docs/GettingInvolved.rst +++ b/llvm/docs/GettingInvolved.rst @@ -407,7 +407,6 @@ BugpointRedesign Proposals/TestSuite Proposals/VariableNames - Proposals/VectorizationPlan Proposals/VectorPredication :doc:`Proposals/GitHubMove` @@ -422,9 +421,6 @@ :doc:`Proposals/VariableNames` Proposal to change the variable names coding standard. -:doc:`Proposals/VectorizationPlan` - Proposal to model the process and upgrade the infrastructure of LLVM's Loop Vectorizer. - :doc:`Proposals/VectorPredication` Proposal for predicated vector instructions in LLVM. diff --git a/llvm/docs/Proposals/VectorizationPlan.rst b/llvm/docs/VectorizationPlan.rst rename from llvm/docs/Proposals/VectorizationPlan.rst rename to llvm/docs/VectorizationPlan.rst diff --git a/llvm/docs/Vectorizers.rst b/llvm/docs/Vectorizers.rst --- a/llvm/docs/Vectorizers.rst +++ b/llvm/docs/Vectorizers.rst @@ -412,9 +412,9 @@ .. toctree:: :hidden: - Proposals/VectorizationPlan + VectorizationPlan -:doc:`Proposals/VectorizationPlan` +:doc:`VectorizationPlan` Modeling the process and upgrading the infrastructure of LLVM's Loop Vectorizer. .. _slp-vectorizer: diff --git a/llvm/include/llvm/Transforms/Vectorize/LoopVectorize.h b/llvm/include/llvm/Transforms/Vectorize/LoopVectorize.h --- a/llvm/include/llvm/Transforms/Vectorize/LoopVectorize.h +++ b/llvm/include/llvm/Transforms/Vectorize/LoopVectorize.h @@ -27,7 +27,7 @@ // // There is a development effort going on to migrate loop vectorizer to the // VPlan infrastructure and to introduce outer loop vectorization support (see -// docs/Proposal/VectorizationPlan.rst and +// docs/VectorizationPlan.rst and // http://lists.llvm.org/pipermail/llvm-dev/2017-December/119523.html). For this // purpose, we temporarily introduced the VPlan-native vectorization path: an // alternative vectorization path that is natively implemented on top of the diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp --- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp @@ -27,7 +27,7 @@ // // There is a development effort going on to migrate loop vectorizer to the // VPlan infrastructure and to introduce outer loop vectorization support (see -// docs/Proposal/VectorizationPlan.rst and +// docs/VectorizationPlan.rst and // http://lists.llvm.org/pipermail/llvm-dev/2017-December/119523.html). For this // purpose, we temporarily introduced the VPlan-native vectorization path: an // alternative vectorization path that is natively implemented on top of the