aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2011-01-03 04:01:44 +0000
committerNick Lewycky <nicholas@mxc.ca>2011-01-03 04:01:44 +0000
commit041ee7e6fa1a04e64371ece9225a984d9a6bdf4b (patch)
tree388e202e9675b154719c253d8c0df3f4858c987e /docs
parent71230acbbe734678b9ced643fa024166413b8824 (diff)
downloadexternal_llvm-041ee7e6fa1a04e64371ece9225a984d9a6bdf4b.zip
external_llvm-041ee7e6fa1a04e64371ece9225a984d9a6bdf4b.tar.gz
external_llvm-041ee7e6fa1a04e64371ece9225a984d9a6bdf4b.tar.bz2
Permit CallGraphSCCPasses readonly access to the direct callers of the functions
in their SCC as they already have with the direct callees. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122734 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/WritingAnLLVMPass.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html
index d0aeeec..357b585 100644
--- a/docs/WritingAnLLVMPass.html
+++ b/docs/WritingAnLLVMPass.html
@@ -562,8 +562,8 @@ href="#BasicBlockPass">BasicBlockPass</a></tt>, you should derive from
<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>