diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-01-14 18:41:42 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-01-14 18:41:42 +0000 |
commit | 95b1a9055ea7a27c231f6e082e5bcee4947ea0ce (patch) | |
tree | 410a8538b71348567c2190b2d2791213ad4ad1d2 | |
parent | 34bc18b97c9f316df093bae7adb3b2a0eb7ee57c (diff) |
Cleaned up comment.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45969 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/CFG.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/include/clang/AST/CFG.h b/include/clang/AST/CFG.h index 28e73f3ba6..fc6f682199 100644 --- a/include/clang/AST/CFG.h +++ b/include/clang/AST/CFG.h @@ -288,10 +288,11 @@ private: // to integers to record block-level expressions. void* BlkExprMap; - // opaque pointer to prevent inclusion of <set>. This records a set of - // CFGBlock edges for using with ProgramPoint. These edges represent - // the edges that cannot be succinctly represented, and in practice this - // set should be small. + /// BlkEdgeSet - An opaque pointer to prevent inclusion of <set>. + /// The set contains std::pair<CFGBlock*,CFGBlock*> objects that have + /// stable references for use by the 'BlockEdge' class. This set is intended + /// to be sparse, as it only contains edges whether both the source + /// and destination block have multiple successors/predecessors. void* BlkEdgeSet; friend class BlockEdge; |