summaryrefslogtreecommitdiffstats
path: root/clang/examples
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/examples
parentca08fba4141f1d3ae6193b3c81fb6ba8fb10d7dc (diff)
downloadbcm5719-llvm-1696f508e2fe95793ca8bb70d78b88023b6b8625.tar.gz
bcm5719-llvm-1696f508e2fe95793ca8bb70d78b88023b6b8625.zip
[analyzer] Refactoring: Drop the 'GR' prefix.
llvm-svn: 122424
Diffstat (limited to 'clang/examples')
-rw-r--r--clang/examples/wpa/clang-wpa.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/examples/wpa/clang-wpa.cpp b/clang/examples/wpa/clang-wpa.cpp
index 45e889e170b..41422b04ecf 100644
--- a/clang/examples/wpa/clang-wpa.cpp
+++ b/clang/examples/wpa/clang-wpa.cpp
@@ -15,8 +15,8 @@
#include "clang/Basic/FileManager.h"
#include "clang/Basic/SourceManager.h"
#include "clang/GR/PathSensitive/AnalysisManager.h"
-#include "clang/GR/PathSensitive/GRExprEngine.h"
-#include "clang/GR/PathSensitive/GRTransferFuncs.h"
+#include "clang/GR/PathSensitive/ExprEngine.h"
+#include "clang/GR/PathSensitive/TransferFuncs.h"
#include "clang/GR/Checkers/LocalCheckers.h"
#include "clang/Frontend/ASTUnit.h"
#include "clang/Frontend/CompilerInstance.h"
@@ -140,9 +140,9 @@ int main(int argc, char **argv) {
/* TrimGraph */ false, /* InlineCall */ true,
/* UseUnoptimizedCFG */ false);
- GRTransferFuncs* TF = MakeCFRefCountTF(AMgr.getASTContext(), /*GC*/false,
+ TransferFuncs* TF = MakeCFRefCountTF(AMgr.getASTContext(), /*GC*/false,
AMgr.getLangOptions());
- GRExprEngine Eng(AMgr, TF);
+ ExprEngine Eng(AMgr, TF);
Eng.ExecuteWorkList(AMgr.getStackFrame(FD, TU), AMgr.getMaxNodes());
OpenPOWER on IntegriCloud