blob: d9a54a021bc9b269a8d7ab34eb9c21a50c7ac114 [file] [log] [blame]
Daniel Dunbar9b414d32010-06-15 17:48:49 +00001//===--- FrontendActions.cpp ----------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "clang/Checker/FrontendActions.h"
11#include "clang/Frontend/CompilerInstance.h"
12#include "clang/Checker/AnalysisConsumer.h"
13using namespace clang;
14
15ASTConsumer *AnalysisAction::CreateASTConsumer(CompilerInstance &CI,
16 llvm::StringRef InFile) {
17 return CreateAnalysisConsumer(CI.getPreprocessor(),
18 CI.getFrontendOpts().OutputFile,
19 CI.getAnalyzerOpts());
20}
21