diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-02-13 00:24:44 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-02-13 00:24:44 +0000 |
commit | 754607e7cff2d902d9af8b771409449fb2f8d2bf (patch) | |
tree | 27781f2df71500bec9e06f5a10067e975babb71f /include/clang/Analysis/PathSensitive/ExplodedGraph.h | |
parent | f81086940024c8fd1c6497800386e88fd313a3d3 (diff) |
Added support to GREngine/GRConstants for handling computed gotos.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@47038 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 dcc833c0df..7b52003c6b 100644 --- a/include/clang/Analysis/PathSensitive/ExplodedGraph.h +++ b/include/clang/Analysis/PathSensitive/ExplodedGraph.h @@ -30,6 +30,7 @@ class GREngineImpl; class ExplodedNodeImpl; class GRStmtNodeBuilderImpl; class GRBranchNodeBuilderImpl; +class GRIndirectGotoNodeBuilderImpl; class CFG; class ASTContext; class FunctionDecl; @@ -41,6 +42,7 @@ protected: friend class GREngineImpl; friend class GRStmtNodeBuilderImpl; friend class GRBranchNodeBuilderImpl; + friend class GRIndirectGotoNodeBuilderImpl; class NodeGroup { enum { Size1 = 0x0, SizeOther = 0x1, AuxFlag = 0x2, Mask = 0x3 }; @@ -195,6 +197,7 @@ protected: friend class GREngineImpl; friend class GRStmtNodeBuilderImpl; friend class GRBranchNodeBuilderImpl; + friend class GRIndirectGotoNodeBuilderImpl; // Type definitions. typedef llvm::DenseMap<ProgramPoint,void*> EdgeNodeSetMap; |