summaryrefslogtreecommitdiffstats
path: root/clang/lib/GR/Checkers/UnixAPIChecker.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
commit1696f508e2fe95793ca8bb70d78b88023b6b8625 (patch)
tree1f556ca8b01869d6345236c16fb074251094950d /clang/lib/GR/Checkers/UnixAPIChecker.cpp
parentca08fba4141f1d3ae6193b3c81fb6ba8fb10d7dc (diff)
downloadbcm5719-llvm-1696f508e2fe95793ca8bb70d78b88023b6b8625.tar.gz
bcm5719-llvm-1696f508e2fe95793ca8bb70d78b88023b6b8625.zip
[analyzer] Refactoring: Drop the 'GR' prefix.
llvm-svn: 122424
Diffstat (limited to 'clang/lib/GR/Checkers/UnixAPIChecker.cpp')
-rw-r--r--clang/lib/GR/Checkers/UnixAPIChecker.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/GR/Checkers/UnixAPIChecker.cpp b/clang/lib/GR/Checkers/UnixAPIChecker.cpp
index f4c75f76ab6..c365e3042dd 100644
--- a/clang/lib/GR/Checkers/UnixAPIChecker.cpp
+++ b/clang/lib/GR/Checkers/UnixAPIChecker.cpp
@@ -12,7 +12,7 @@
//
//===----------------------------------------------------------------------===//
-#include "GRExprEngineInternalChecks.h"
+#include "ExprEngineInternalChecks.h"
#include "clang/Basic/TargetInfo.h"
#include "clang/GR/BugReporter/BugType.h"
#include "clang/GR/PathSensitive/CheckerVisitor.h"
@@ -46,7 +46,7 @@ public:
};
} //end anonymous namespace
-void GR::RegisterUnixAPIChecker(GRExprEngine &Eng) {
+void GR::RegisterUnixAPIChecker(ExprEngine &Eng) {
Eng.registerCheck(new UnixAPIChecker());
}
@@ -74,7 +74,7 @@ static void CheckOpen(CheckerContext &C, UnixAPIChecker &UC,
else {
// FIXME: We need a more general way of getting the O_CREAT value.
// We could possibly grovel through the preprocessor state, but
- // that would require passing the Preprocessor object to the GRExprEngine.
+ // that would require passing the Preprocessor object to the ExprEngine.
return;
}
}
OpenPOWER on IntegriCloud