summaryrefslogtreecommitdiff
path: root/docs/WritingAnLLVMPass.html
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2007-01-23 22:56:28 +0000
committerDevang Patel <dpatel@apple.com>2007-01-23 22:56:28 +0000
commitc20048d05ce27118c5a50fefc8829ccf12be8e38 (patch)
tree906e23859fb57a7ce272448317959791c7e9c39b /docs/WritingAnLLVMPass.html
parent7c3992f9c0d18c112889e373e60cb5729dbed649 (diff)
downloadllvm-c20048d05ce27118c5a50fefc8829ccf12be8e38.tar.gz
llvm-c20048d05ce27118c5a50fefc8829ccf12be8e38.tar.bz2
llvm-c20048d05ce27118c5a50fefc8829ccf12be8e38.tar.xz
Fix cut-n-pasto.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33469 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/WritingAnLLVMPass.html')
-rw-r--r--docs/WritingAnLLVMPass.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html
index 0c362d0e7c..a31703aa59 100644
--- a/docs/WritingAnLLVMPass.html
+++ b/docs/WritingAnLLVMPass.html
@@ -29,10 +29,10 @@
</ul></li>
<li><a href="#CallGraphSCCPass">The <tt>CallGraphSCCPass</tt> class</a>
<ul>
- <li><a href="#doInitialization_scc">The <tt>doInitialization(Module
+ <li><a href="#doInitialization_scc">The <tt>doInitialization(CallGraph
&amp;)</tt> method</a></li>
<li><a href="#runOnSCC">The <tt>runOnSCC</tt> method</a></li>
- <li><a href="#doFinalization_scc">The <tt>doFinalization(Module
+ <li><a href="#doFinalization_scc">The <tt>doFinalization(CallGraph
&amp;)</tt> method</a></li>
</ul></li>
<li><a href="#FunctionPass">The <tt>FunctionPass</tt> class</a>
@@ -534,14 +534,14 @@ false if they didn't.</p>
<!-- _______________________________________________________________________ -->
<div class="doc_subsubsection">
- <a name="doInitialization_scc">The <tt>doInitialization(Module &amp;)</tt>
+ <a name="doInitialization_scc">The <tt>doInitialization(CallGraph &amp;)</tt>
method</a>
</div>
<div class="doc_text">
<div class="doc_code"><pre>
- <b>virtual bool</b> doInitialization(Module &amp;M);
+ <b>virtual bool</b> doInitialization(CallGraph &amp;CG);
</pre></div>
<p>The <tt>doIninitialize</tt> method is allowed to do most of the things that
@@ -573,14 +573,14 @@ otherwise.</p>
<!-- _______________________________________________________________________ -->
<div class="doc_subsubsection">
- <a name="doFinalization_scc">The <tt>doFinalization(Module
+ <a name="doFinalization_scc">The <tt>doFinalization(CallGraph
&amp;)</tt> method</a>
</div>
<div class="doc_text">
<div class="doc_code"><pre>
- <b>virtual bool</b> doFinalization(Module &amp;M);
+ <b>virtual bool</b> doFinalization(CallGraph &amp;CG);
</pre></div>
<p>The <tt>doFinalization</tt> method is an infrequently used method that is