[cfe-commits] r45487 - /cfe/trunk/include/clang/Analysis/PathSensitive/SimulVertex.h
Ted Kremenek
kremenek at apple.com
Wed Jan 2 09:05:47 PST 2008
Author: kremenek
Date: Wed Jan 2 11:05:47 2008
New Revision: 45487
URL: http://llvm.org/viewvc/llvm-project?rev=45487&view=rev
Log:
Added fixme.
Modified:
cfe/trunk/include/clang/Analysis/PathSensitive/SimulVertex.h
Modified: cfe/trunk/include/clang/Analysis/PathSensitive/SimulVertex.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Analysis/PathSensitive/SimulVertex.h?rev=45487&r1=45486&r2=45487&view=diff
==============================================================================
--- cfe/trunk/include/clang/Analysis/PathSensitive/SimulVertex.h (original)
+++ cfe/trunk/include/clang/Analysis/PathSensitive/SimulVertex.h Wed Jan 2 11:05:47 2008
@@ -41,6 +41,10 @@
/// Predecessors/Successors - Keep track of the predecessor/successor
/// vertices.
+
+ // FIXME: Preds and Succs only grows, not shrinks. It would be nice
+ // if these lists were allocated from the same BumpPtrAllocator as
+ // the vertices themselves.
typedef llvm::SmallVector<1,SimulVertex*> AdjacentVertices;
AdjacentVertices Preds;
AdjacentVertices Succs;
More information about the cfe-commits
mailing list