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

Nick Lewycky nicholas at mxc.ca
Sun Jan 2 20:01:44 PST 2011


Author: nicholas
Date: Sun Jan  2 22:01:44 2011
New Revision: 122734

URL: http://llvm.org/viewvc/llvm-project?rev=122734&view=rev
Log:
Permit CallGraphSCCPasses readonly access to the direct callers of the functions
in their SCC as they already have with the direct callees.

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=122734&r1=122733&r2=122734&view=diff
==============================================================================
--- llvm/trunk/docs/WritingAnLLVMPass.html (original)
+++ llvm/trunk/docs/WritingAnLLVMPass.html Sun Jan  2 22:01:44 2011
@@ -562,8 +562,8 @@
 <li>... <em>not allowed</em> to modify any <tt>Function</tt>s that are not in
 the current SCC.</li>
 
-<li>... <em>not allowed</em> to inspect any Function's other than those in the
-current SCC and the direct callees of the SCC.</li>
+<li>... <em>not allowed</em> to inspect any <tt>Function</tt>s other than those
+in the current SCC and the direct callers and direct callees of the SCC.</li>
 
 <li>... <em>required</em> to preserve the current CallGraph object, updating it
 to reflect any changes made to the program.</li>





More information about the llvm-commits mailing list