aboutsummaryrefslogtreecommitdiff
path: root/lib/GR/BasicConstraintManager.cpp
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2010-12-22 18:53:44 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2010-12-22 18:53:44 +0000
commitd2592a34a059e7cbb2b11dc53649ac4912422909 (patch)
tree657f2a7e473faa1a4cef19ed1776e90c44728a36 /lib/GR/BasicConstraintManager.cpp
parent5a4f98ff943e6a501b0fe47ade007c9bbf96cb88 (diff)
[analyzer] Refactoring: Drop the 'GR' prefix.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@122424 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/GR/BasicConstraintManager.cpp')
-rw-r--r--lib/GR/BasicConstraintManager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/GR/BasicConstraintManager.cpp b/lib/GR/BasicConstraintManager.cpp
index ac289b89c2..2de0d9a23c 100644
--- a/lib/GR/BasicConstraintManager.cpp
+++ b/lib/GR/BasicConstraintManager.cpp
@@ -15,7 +15,7 @@
#include "SimpleConstraintManager.h"
#include "clang/GR/PathSensitive/GRState.h"
#include "clang/GR/PathSensitive/GRStateTrait.h"
-#include "clang/GR/PathSensitive/GRTransferFuncs.h"
+#include "clang/GR/PathSensitive/TransferFuncs.h"
#include "llvm/Support/raw_ostream.h"
using namespace clang;
@@ -52,7 +52,7 @@ class BasicConstraintManager
: public SimpleConstraintManager {
GRState::IntSetTy::Factory ISetFactory;
public:
- BasicConstraintManager(GRStateManager &statemgr, GRSubEngine &subengine)
+ BasicConstraintManager(GRStateManager &statemgr, SubEngine &subengine)
: SimpleConstraintManager(subengine),
ISetFactory(statemgr.getAllocator()) {}
@@ -99,7 +99,7 @@ public:
} // end anonymous namespace
ConstraintManager* GR::CreateBasicConstraintManager(GRStateManager& statemgr,
- GRSubEngine &subengine) {
+ SubEngine &subengine) {
return new BasicConstraintManager(statemgr, subengine);
}