From 8efb5812b8f49e6c5cb4635e39e4cacafd1ae73c Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Mon, 15 Mar 2010 17:45:13 +0000 Subject: [PATCH] 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 --- include/clang/Analysis/CFG.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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. -- 2.40.0