aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2010-03-15 17:45:13 +0000
committerTed Kremenek <kremenek@apple.com>2010-03-15 17:45:13 +0000
commit8efb5812b8f49e6c5cb4635e39e4cacafd1ae73c (patch)
tree28aa9744b658ae5753b43e067b0bfa52e8fbff56
parent66ccaec73706f3623d2e7d191fe2c944feedcc2b (diff)
Add comment to CFG to 'buildCFG()' arguments indicating that scope
support is not fully implemented. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@98555 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Analysis/CFG.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang/Analysis/CFG.h b/include/clang/Analysis/CFG.h
index 528cf87803..b7256c9dc3 100644
--- a/include/clang/Analysis/CFG.h
+++ b/include/clang/Analysis/CFG.h
@@ -286,7 +286,8 @@ public:
/// constructed CFG belongs to the caller.
static CFG* buildCFG(const Decl *D, Stmt* AST, ASTContext *C,
bool AddEHEdges = false,
- bool AddScopes = false);
+ bool AddScopes = false /* NOT FULLY IMPLEMENTED.
+ NOT READY FOR GENERAL USE. */);
/// createBlock - Create a new block in the CFG. The CFG owns the block;
/// the caller should not directly free it.