summaryrefslogtreecommitdiffstats
path: root/include/clang/StaticAnalyzer/Frontend/AnalysisConsumer.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/clang/StaticAnalyzer/Frontend/AnalysisConsumer.h')
-rw-r--r--include/clang/StaticAnalyzer/Frontend/AnalysisConsumer.h49
1 files changed, 0 insertions, 49 deletions
diff --git a/include/clang/StaticAnalyzer/Frontend/AnalysisConsumer.h b/include/clang/StaticAnalyzer/Frontend/AnalysisConsumer.h
deleted file mode 100644
index 37ea05f..0000000
--- a/include/clang/StaticAnalyzer/Frontend/AnalysisConsumer.h
+++ /dev/null
@@ -1,49 +0,0 @@
-//===--- AnalysisConsumer.h - Front-end Analysis Engine Hooks ---*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-// This header contains the functions necessary for a front-end to run various
-// analyses.
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef LLVM_CLANG_STATICANALYZER_FRONTEND_ANALYSISCONSUMER_H
-#define LLVM_CLANG_STATICANALYZER_FRONTEND_ANALYSISCONSUMER_H
-
-#include "clang/AST/ASTConsumer.h"
-#include "clang/Basic/LLVM.h"
-#include "clang/StaticAnalyzer/Core/AnalyzerOptions.h"
-#include "clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h"
-#include <string>
-
-namespace clang {
-
-class Preprocessor;
-class DiagnosticsEngine;
-class CodeInjector;
-class CompilerInstance;
-
-namespace ento {
-class CheckerManager;
-
-class AnalysisASTConsumer : public ASTConsumer {
-public:
- virtual void AddDiagnosticConsumer(PathDiagnosticConsumer *Consumer) = 0;
-};
-
-/// CreateAnalysisConsumer - Creates an ASTConsumer to run various code
-/// analysis passes. (The set of analyses run is controlled by command-line
-/// options.)
-std::unique_ptr<AnalysisASTConsumer>
-CreateAnalysisConsumer(CompilerInstance &CI);
-
-} // end GR namespace
-
-} // end clang namespace
-
-#endif
OpenPOWER on IntegriCloud