]> granicus.if.org Git - clang/commitdiff
Cleaned up comment.
authorTed Kremenek <kremenek@apple.com>
Mon, 14 Jan 2008 18:41:42 +0000 (18:41 +0000)
committerTed Kremenek <kremenek@apple.com>
Mon, 14 Jan 2008 18:41:42 +0000 (18:41 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45969 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/CFG.h

index 28e73f3ba674fb16facf0abdfc3907c135c03dc0..fc6f6821998d4c6be24f6e6efc82a7094bae8fa6 100644 (file)
@@ -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;