aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Analysis/PathSensitive/ExplodedGraph.h
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2008-01-29 22:11:49 +0000
committerTed Kremenek <kremenek@apple.com>2008-01-29 22:11:49 +0000
commitf4b7a6940070f04d7845ac55f0d1e300a8bee0d9 (patch)
treec56ccbb7f7b82000aa7a66f8b7f1248d80709011 /include/clang/Analysis/PathSensitive/ExplodedGraph.h
parent03701674673842da801d0982c1777f9ef048f124 (diff)
Renamed GRNodeBuilder to GRStmtNodeBuilder.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46531 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Analysis/PathSensitive/ExplodedGraph.h')
-rw-r--r--include/clang/Analysis/PathSensitive/ExplodedGraph.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/clang/Analysis/PathSensitive/ExplodedGraph.h b/include/clang/Analysis/PathSensitive/ExplodedGraph.h
index 9545e7c0d8..a7f6c3c005 100644
--- a/include/clang/Analysis/PathSensitive/ExplodedGraph.h
+++ b/include/clang/Analysis/PathSensitive/ExplodedGraph.h
@@ -28,7 +28,7 @@ namespace clang {
class GREngineImpl;
class ExplodedNodeImpl;
-class GRNodeBuilderImpl;
+class GRStmtNodeBuilderImpl;
class CFG;
class ASTContext;
class FunctionDecl;
@@ -38,7 +38,7 @@ class ExplodedNodeImpl : public llvm::FoldingSetNode {
protected:
friend class ExplodedGraphImpl;
friend class GREngineImpl;
- friend class GRNodeBuilderImpl;
+ friend class GRStmtNodeBuilderImpl;
class NodeGroup {
enum { Size1 = 0x0, SizeOther = 0x1, Infeasible = 0x2, Flags = 0x3 };
@@ -192,7 +192,7 @@ public:
class ExplodedGraphImpl {
protected:
friend class GREngineImpl;
- friend class GRNodeBuilderImpl;
+ friend class GRStmtNodeBuilderImpl;
// Type definitions.
typedef llvm::DenseMap<ProgramPoint,void*> EdgeNodeSetMap;