[llvm-branch-commits] [cfe-branch] r71341 - /cfe/branches/Apple/Dib/include/clang/Analysis/PathSensitive/GRCoreEngine.h

Mike Stump mrs at apple.com
Fri May 8 23:22:43 PDT 2009


Author: mrs
Date: Sat May  9 01:22:43 2009
New Revision: 71341

URL: http://llvm.org/viewvc/llvm-project?rev=71341&view=rev
Log:
Merge in 71306:

Fix lurking bug in one of the versions of
GRStmtNodeBuilder::generateNode() where the HasGeneratedNode flag
wouldn't properly be set.

Modified:
    cfe/branches/Apple/Dib/include/clang/Analysis/PathSensitive/GRCoreEngine.h

Modified: cfe/branches/Apple/Dib/include/clang/Analysis/PathSensitive/GRCoreEngine.h
URL: http://llvm.org/viewvc/llvm-project/cfe/branches/Apple/Dib/include/clang/Analysis/PathSensitive/GRCoreEngine.h?rev=71341&r1=71340&r2=71341&view=diff

==============================================================================
--- cfe/branches/Apple/Dib/include/clang/Analysis/PathSensitive/GRCoreEngine.h (original)
+++ cfe/branches/Apple/Dib/include/clang/Analysis/PathSensitive/GRCoreEngine.h Sat May  9 01:22:43 2009
@@ -206,6 +206,7 @@
   }
   
   NodeTy* generateNode(PostStmt PP, const StateTy* St, NodeTy* Pred) {
+    HasGeneratedNode = true;
     return static_cast<NodeTy*>(NB.generateNodeImpl(PP, St, Pred));
   }
   





More information about the llvm-branch-commits mailing list