summaryrefslogtreecommitdiffstats
path: root/clang
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2008-01-14 18:41:42 +0000
committerTed Kremenek <kremenek@apple.com>2008-01-14 18:41:42 +0000
commit94acc6ac9aada76f1b84b3afddc630b976884dc2 (patch)
tree94ed3588d14caafa61726dbb74a12e63d8bbb594 /clang
parenta018a2c0f4a9e19378284424c941a71b733c8055 (diff)
downloadbcm5719-llvm-94acc6ac9aada76f1b84b3afddc630b976884dc2.tar.gz
bcm5719-llvm-94acc6ac9aada76f1b84b3afddc630b976884dc2.zip
Cleaned up comment.
llvm-svn: 45969
Diffstat (limited to 'clang')
-rw-r--r--clang/include/clang/AST/CFG.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/clang/include/clang/AST/CFG.h b/clang/include/clang/AST/CFG.h
index 28e73f3ba67..fc6f6821998 100644
--- a/clang/include/clang/AST/CFG.h
+++ b/clang/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;
OpenPOWER on IntegriCloud