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 | 92d335cbfeb7aa005ad96e890e6b4037a99e24c3 (patch) | |
| tree | 15da2dac2a80a0028640d187c86741da11bdec15 | |
| parent | 826eff1c355df601e2b6a31d6e604785c660c6b6 (diff) | |
| download | bcm5719-llvm-92d335cbfeb7aa005ad96e890e6b4037a99e24c3.tar.gz bcm5719-llvm-92d335cbfeb7aa005ad96e890e6b4037a99e24c3.zip | |
Add comment indicating semantics of indirect calls
llvm-svn: 744
| -rw-r--r-- | llvm/include/llvm/Analysis/CallGraph.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/include/llvm/Analysis/CallGraph.h b/llvm/include/llvm/Analysis/CallGraph.h index 0683623454c..3c6f7cc4660 100644 --- a/llvm/include/llvm/Analysis/CallGraph.h +++ b/llvm/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 |

