aboutsummaryrefslogtreecommitdiff
path: root/lib/StaticAnalyzer/Frontend/FrontendActions.cpp
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2011-02-14 18:13:06 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2011-02-14 18:13:06 +0000
commitf49a009c18b9c6fd92868600c3195afe4eb97259 (patch)
treedc4bb573aa3e4cb3272b580c8cfcb32e82fcf035 /lib/StaticAnalyzer/Frontend/FrontendActions.cpp
parente817771c57d0eacbe069a314ba619c43d0ac70ab (diff)
[analyzer] Move Checkers/FrontendActions.cpp -> Frontend/FrontendActions.cpp
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@125500 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer/Frontend/FrontendActions.cpp')
-rw-r--r--lib/StaticAnalyzer/Frontend/FrontendActions.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/StaticAnalyzer/Frontend/FrontendActions.cpp b/lib/StaticAnalyzer/Frontend/FrontendActions.cpp
new file mode 100644
index 0000000000..27b66f903a
--- /dev/null
+++ b/lib/StaticAnalyzer/Frontend/FrontendActions.cpp
@@ -0,0 +1,22 @@
+//===--- FrontendActions.cpp ----------------------------------------------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#include "clang/StaticAnalyzer/Core/FrontendActions.h"
+#include "clang/Frontend/CompilerInstance.h"
+#include "clang/StaticAnalyzer/Core/AnalysisConsumer.h"
+using namespace clang;
+using namespace ento;
+
+ASTConsumer *AnalysisAction::CreateASTConsumer(CompilerInstance &CI,
+ llvm::StringRef InFile) {
+ return CreateAnalysisConsumer(CI.getPreprocessor(),
+ CI.getFrontendOpts().OutputFile,
+ CI.getAnalyzerOpts());
+}
+