diff options
-rw-r--r-- | docs/WritingAnLLVMPass.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html index 7dbaa9e6bd..f3e791f094 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<CallGraphNode *> &SCCM) = 0; + <b>virtual bool</b> runOnSCC(CallGraphSCC &SCC) = 0; </pre></div> <p>The <tt>runOnSCC</tt> method performs the interesting work of the pass, and |