diff options
author | Chris Lattner <sabre@nondot.org> | 2001-10-13 06:24:35 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-10-13 06:24:35 +0000 |
commit | a0d7f9dbb7eff1e80695a58b4f43fee425ba57d1 (patch) | |
tree | d72317138dbc2130193e2cfe575064fee6420961 /include/llvm/Analysis/CallGraph.h | |
parent | 742b1461dba565da83e952dabceb3b2a0e16685b (diff) | |
download | external_llvm-a0d7f9dbb7eff1e80695a58b4f43fee425ba57d1.zip external_llvm-a0d7f9dbb7eff1e80695a58b4f43fee425ba57d1.tar.gz external_llvm-a0d7f9dbb7eff1e80695a58b4f43fee425ba57d1.tar.bz2 |
Add comment indicating semantics of indirect calls
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@744 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/CallGraph.h')
-rw-r--r-- | include/llvm/Analysis/CallGraph.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llvm/Analysis/CallGraph.h b/include/llvm/Analysis/CallGraph.h index 0683623..3c6f7cc 100644 --- a/include/llvm/Analysis/CallGraph.h +++ b/include/llvm/Analysis/CallGraph.h @@ -3,6 +3,10 @@ // This interface is used to build and manipulate a call graph, which is a very // useful tool for interprocedural optimization. // +// This call graph represents a dynamic method invocation as a null method node. +// A call graph may only have up to one null method node that represents all of +// the dynamic method invocations. +// //===----------------------------------------------------------------------===// #ifndef LLVM_ANALYSIS_CALLGRAPH_H |