summaryrefslogtreecommitdiffstats
path: root/lib/Checker/FrontendActions.cpp
blob: d9a54a021bc9b269a8d7ab34eb9c21a50c7ac114 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//===--- 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/Checker/FrontendActions.h"
#include "clang/Frontend/CompilerInstance.h"
#include "clang/Checker/AnalysisConsumer.h"
using namespace clang;

ASTConsumer *AnalysisAction::CreateASTConsumer(CompilerInstance &CI,
                                               llvm::StringRef InFile) {
  return CreateAnalysisConsumer(CI.getPreprocessor(),
                                CI.getFrontendOpts().OutputFile,
                                CI.getAnalyzerOpts());
}

OpenPOWER on IntegriCloud