[llvm] 974d8f6 - [docs] Fix a documentation link (#105795)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 27 06:02:32 PDT 2024
Author: Piotr Fusik
Date: 2024-08-27T17:02:28+04:00
New Revision: 974d8f6c0c49d279d8a5880ec3dd1fd11589cca0
URL: https://github.com/llvm/llvm-project/commit/974d8f6c0c49d279d8a5880ec3dd1fd11589cca0
DIFF: https://github.com/llvm/llvm-project/commit/974d8f6c0c49d279d8a5880ec3dd1fd11589cca0.diff
LOG: [docs] Fix a documentation link (#105795)
Added:
Modified:
llvm/docs/WritingAnLLVMPass.rst
Removed:
################################################################################
diff --git a/llvm/docs/WritingAnLLVMPass.rst b/llvm/docs/WritingAnLLVMPass.rst
index d2afa3913ee078..31194e8b0389c1 100644
--- a/llvm/docs/WritingAnLLVMPass.rst
+++ b/llvm/docs/WritingAnLLVMPass.rst
@@ -489,7 +489,7 @@ spanning the range from ``DominatorSet`` to ``BreakCriticalEdges``. Requiring
edges in the CFG when your pass has been run.
Some analyses chain to other analyses to do their job. For example, an
-`AliasAnalysis <AliasAnalysis>` implementation is required to :ref:`chain
+`AliasAnalysis <AliasAnalysis.html>`_ implementation is required to :ref:`chain
<aliasanalysis-chaining>` to other alias analysis passes. In cases where
analyses chain, the ``addRequiredTransitive`` method should be used instead of
the ``addRequired`` method. This informs the ``PassManager`` that the
More information about the llvm-commits
mailing list