aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Stump <mrs@apple.com>2009-07-22 16:55:20 +0000
committerMike Stump <mrs@apple.com>2009-07-22 16:55:20 +0000
commit0c8c5365be0176e8399e97d7da3293c79bc9da24 (patch)
tree5de845a0d47c7ff01c06d814007f6b59a71ab036
parent470301bac9c8abfc6b451b3b669c6695a9fd1518 (diff)
Add some documentation, to make it so the next person doens't select
the wrong function. :-) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@76752 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Analysis/CFG.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/clang/Analysis/CFG.h b/include/clang/Analysis/CFG.h
index 90b6cdc08d..34dedc074a 100644
--- a/include/clang/Analysis/CFG.h
+++ b/include/clang/Analysis/CFG.h
@@ -280,6 +280,8 @@ public:
BlkExprNumTy getBlkExprNum(const Stmt* S);
unsigned getNumBlkExprs();
+ /// getNumBlockIDs - Returns the total number of BlockIDs allocated (which
+ /// start at 0).
unsigned getNumBlockIDs() const { return NumBlockIDs; }
//===--------------------------------------------------------------------===//