diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-02-13 23:08:21 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-02-13 23:08:21 +0000 |
commit | daeb9a7376830d637e02b5bc51faf4750a7bce70 (patch) | |
tree | 97bccb168255014d83fc01326589a58a5e3683f5 /include/clang/Analysis/PathSensitive/ExplodedGraph.h | |
parent | 376605b59abbf785e120ffda9b3a2bc4bede8f16 (diff) |
Added support to GRCoreEngine/GRExprEngine for processing control-flow
from switch...case...default statements.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@47100 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Analysis/PathSensitive/ExplodedGraph.h')
-rw-r--r-- | include/clang/Analysis/PathSensitive/ExplodedGraph.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/clang/Analysis/PathSensitive/ExplodedGraph.h b/include/clang/Analysis/PathSensitive/ExplodedGraph.h index acc97084ec..871d765bd3 100644 --- a/include/clang/Analysis/PathSensitive/ExplodedGraph.h +++ b/include/clang/Analysis/PathSensitive/ExplodedGraph.h @@ -31,6 +31,7 @@ class ExplodedNodeImpl; class GRStmtNodeBuilderImpl; class GRBranchNodeBuilderImpl; class GRIndirectGotoNodeBuilderImpl; +class GRSwitchNodeBuilderImpl; class CFG; class ASTContext; class FunctionDecl; @@ -43,6 +44,7 @@ protected: friend class GRStmtNodeBuilderImpl; friend class GRBranchNodeBuilderImpl; friend class GRIndirectGotoNodeBuilderImpl; + friend class GRSwitchNodeBuilderImpl; class NodeGroup { enum { Size1 = 0x0, SizeOther = 0x1, AuxFlag = 0x2, Mask = 0x3 }; @@ -198,6 +200,7 @@ protected: friend class GRStmtNodeBuilderImpl; friend class GRBranchNodeBuilderImpl; friend class GRIndirectGotoNodeBuilderImpl; + friend class GRSwitchNodeBuilderImpl; // Type definitions. typedef llvm::DenseMap<ProgramPoint,void*> EdgeNodeSetMap; |