[llvm] [docs] Fix a documentation link (PR #105795)
Piotr Fusik via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 23 10:21:25 PDT 2024
https://github.com/pfusik updated https://github.com/llvm/llvm-project/pull/105795
>From 36da9063246c4f99c71f6e973b28d3afc39d7544 Mon Sep 17 00:00:00 2001
From: Piotr Fusik <p.fusik at samsung.com>
Date: Fri, 23 Aug 2024 09:49:26 +0200
Subject: [PATCH] [docs] Fix a documentation link
---
llvm/docs/WritingAnLLVMPass.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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