[llvm-commits] [llvm] r101566 - /llvm/trunk/docs/WritingAnLLVMPass.html

Chris Lattner sabre at nondot.org
Fri Apr 16 16:07:45 PDT 2010


Author: lattner
Date: Fri Apr 16 18:07:44 2010
New Revision: 101566

URL: http://llvm.org/viewvc/llvm-project?rev=101566&view=rev
Log:
update docs for api change.

Modified:
    llvm/trunk/docs/WritingAnLLVMPass.html

Modified: llvm/trunk/docs/WritingAnLLVMPass.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/WritingAnLLVMPass.html?rev=101566&r1=101565&r2=101566&view=diff
==============================================================================
--- llvm/trunk/docs/WritingAnLLVMPass.html (original)
+++ llvm/trunk/docs/WritingAnLLVMPass.html Fri Apr 16 18:07:44 2010
@@ -607,7 +607,7 @@
 <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





More information about the llvm-commits mailing list