aboutsummaryrefslogtreecommitdiffstats
path: root/docs/WritingAnLLVMPass.html
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-04-16 23:07:44 +0000
committerChris Lattner <sabre@nondot.org>2010-04-16 23:07:44 +0000
commit6f25d9fa83ab992151c550e7f3180a3a2a4d34ab (patch)
treee715a5beccd052027fac4645efaee84a5615c28a /docs/WritingAnLLVMPass.html
parentbde0bb5f882ae708ca70a42bdd3a9805e63f6fb7 (diff)
downloadexternal_llvm-6f25d9fa83ab992151c550e7f3180a3a2a4d34ab.zip
external_llvm-6f25d9fa83ab992151c550e7f3180a3a2a4d34ab.tar.gz
external_llvm-6f25d9fa83ab992151c550e7f3180a3a2a4d34ab.tar.bz2
update docs for api change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101566 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/WritingAnLLVMPass.html')
-rw-r--r--docs/WritingAnLLVMPass.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html
index 7dbaa9e..f3e791f 100644
--- a/docs/WritingAnLLVMPass.html
+++ b/docs/WritingAnLLVMPass.html
@@ -607,7 +607,7 @@ fast).</p>
<div class="doc_text">
<div class="doc_code"><pre>
- <b>virtual bool</b> runOnSCC(const std::vector&lt;CallGraphNode *&gt; &amp;SCCM) = 0;
+ <b>virtual bool</b> runOnSCC(CallGraphSCC &amp;SCC) = 0;
</pre></div>
<p>The <tt>runOnSCC</tt> method performs the interesting work of the pass, and