[cfe-commits] r98555 - /cfe/trunk/include/clang/Analysis/CFG.h

Ted Kremenek kremenek at apple.com
Mon Mar 15 10:45:13 PDT 2010


Author: kremenek
Date: Mon Mar 15 12:45:13 2010
New Revision: 98555

URL: http://llvm.org/viewvc/llvm-project?rev=98555&view=rev
Log:
Add comment to CFG to 'buildCFG()' arguments indicating that scope
support is not fully implemented.

Modified:
    cfe/trunk/include/clang/Analysis/CFG.h

Modified: cfe/trunk/include/clang/Analysis/CFG.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Analysis/CFG.h?rev=98555&r1=98554&r2=98555&view=diff
==============================================================================
--- cfe/trunk/include/clang/Analysis/CFG.h (original)
+++ cfe/trunk/include/clang/Analysis/CFG.h Mon Mar 15 12:45:13 2010
@@ -286,7 +286,8 @@
   ///   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.





More information about the cfe-commits mailing list