diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-02-13 17:41:41 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-02-13 17:41:41 +0000 |
commit | 4d4dd85923ecfc9c38ac0e94fb2602e1cce4406b (patch) | |
tree | b7adedd0ec8c64041c113cd513fdb3c23b7b191b /include/clang/Analysis/PathSensitive/ExplodedGraph.h | |
parent | 4b3f9b367c16e494c181d6f03d53497ae1275fbe (diff) |
Renamed class GREngine => GRCoreEngine.
Renamed class GRConstants => GRExprEngine.
This was done with a Perl script, and will result in 80 col. violations that
I will gradually fix up.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@47070 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Analysis/PathSensitive/ExplodedGraph.h')
-rw-r--r-- | include/clang/Analysis/PathSensitive/ExplodedGraph.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/clang/Analysis/PathSensitive/ExplodedGraph.h b/include/clang/Analysis/PathSensitive/ExplodedGraph.h index 7b52003c6b..acc97084ec 100644 --- a/include/clang/Analysis/PathSensitive/ExplodedGraph.h +++ b/include/clang/Analysis/PathSensitive/ExplodedGraph.h @@ -26,7 +26,7 @@ namespace clang { -class GREngineImpl; +class GRCoreEngineImpl; class ExplodedNodeImpl; class GRStmtNodeBuilderImpl; class GRBranchNodeBuilderImpl; @@ -39,7 +39,7 @@ class FunctionDecl; class ExplodedNodeImpl : public llvm::FoldingSetNode { protected: friend class ExplodedGraphImpl; - friend class GREngineImpl; + friend class GRCoreEngineImpl; friend class GRStmtNodeBuilderImpl; friend class GRBranchNodeBuilderImpl; friend class GRIndirectGotoNodeBuilderImpl; @@ -194,7 +194,7 @@ public: class ExplodedGraphImpl { protected: - friend class GREngineImpl; + friend class GRCoreEngineImpl; friend class GRStmtNodeBuilderImpl; friend class GRBranchNodeBuilderImpl; friend class GRIndirectGotoNodeBuilderImpl; @@ -231,7 +231,7 @@ protected: /// getNodeImpl - Retrieve the node associated with a (Location,State) /// pair, where 'State' is represented as an opaque void*. This method - /// is intended to be used only by GREngineImpl. + /// is intended to be used only by GRCoreEngineImpl. virtual ExplodedNodeImpl* getNodeImpl(const ProgramPoint& L, void* State, bool* IsNew) = 0; |