summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2008-11-06 19:47:49 +0000
committerDevang Patel <dpatel@apple.com>2008-11-06 19:47:49 +0000
commit00f1c4040c1f3f9967a5753223832d60ea39d8a2 (patch)
tree94e8e34fc59915fd8804abaa5f657988cc7a806d /docs
parent12c3a533c50fe3c7475c1ff7c1bb4b26e36dc6c3 (diff)
downloadllvm-00f1c4040c1f3f9967a5753223832d60ea39d8a2.tar.gz
llvm-00f1c4040c1f3f9967a5753223832d60ea39d8a2.tar.bz2
llvm-00f1c4040c1f3f9967a5753223832d60ea39d8a2.tar.xz
Clarify documentation. A module pass MP can require a function paqss FP only if FP does not require any module pass.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58813 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/WritingAnLLVMPass.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html
index 047ac6ef2d..486de6f631 100644
--- a/docs/WritingAnLLVMPass.html
+++ b/docs/WritingAnLLVMPass.html
@@ -492,7 +492,8 @@ refering to function bodies in no predictable order, or adding and removing
functions. Because nothing is known about the behavior of <tt>ModulePass</tt>
subclasses, no optimization can be done for their execution. A module pass
can use function level passes (e.g. dominators) using getAnalysis interface
-<tt> getAnalysis&lt;DominatorTree&gt;(Function)</tt>. </p>
+<tt> getAnalysis&lt;DominatorTree&gt;(Function)</tt>, if the function pass
+does not require any module passes. </p>
<p>To write a correct <tt>ModulePass</tt> subclass, derive from
<tt>ModulePass</tt> and overload the <tt>runOnModule</tt> method with the