aboutsummaryrefslogtreecommitdiffstats
path: root/docs/WritingAnLLVMPass.html
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2011-04-05 21:43:56 +0000
committerChris Lattner <sabre@nondot.org>2011-04-05 21:43:56 +0000
commit51fbec9021e180af6e9bb6ec7d0a6ed3bd73a0f3 (patch)
tree1eda00ecefaafc8a65d81ef38b003b068cb41528 /docs/WritingAnLLVMPass.html
parentc5ddb740895f4f2efe58bcd6d092d07d0bdb2527 (diff)
downloadexternal_llvm-51fbec9021e180af6e9bb6ec7d0a6ed3bd73a0f3.zip
external_llvm-51fbec9021e180af6e9bb6ec7d0a6ed3bd73a0f3.tar.gz
external_llvm-51fbec9021e180af6e9bb6ec7d0a6ed3bd73a0f3.tar.bz2
remove graphprinter support for domfrontier.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128938 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/WritingAnLLVMPass.html')
-rw-r--r--docs/WritingAnLLVMPass.html11
1 files changed, 0 insertions, 11 deletions
diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html
index edc8631..97db123 100644
--- a/docs/WritingAnLLVMPass.html
+++ b/docs/WritingAnLLVMPass.html
@@ -1207,17 +1207,6 @@ the fact that it hacks on the CFG.
<div class="doc_text">
<div class="doc_code"><pre>
- <i>// This is an example implementation from an analysis, which does not modify
- // the program at all, yet has a prerequisite.</i>
- <b>void</b> <a href="http://llvm.org/doxygen/classllvm_1_1PostDominanceFrontier.html">PostDominanceFrontier</a>::getAnalysisUsage(AnalysisUsage &amp;AU) <b>const</b> {
- AU.setPreservesAll();
- AU.addRequired&lt;<a href="http://llvm.org/doxygen/classllvm_1_1PostDominatorTree.html">PostDominatorTree</a>&gt;();
- }
-</pre></div>
-
-<p>and:</p>
-
-<div class="doc_code"><pre>
<i>// This example modifies the program, but does not modify the CFG</i>
<b>void</b> <a href="http://llvm.org/doxygen/structLICM.html">LICM</a>::getAnalysisUsage(AnalysisUsage &amp;AU) <b>const</b> {
AU.setPreservesCFG();