diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-06-07 23:24:43 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-06-07 23:24:43 +0000 |
commit | fa6214c9523a7af4ba9eb7806f20397795846b52 (patch) | |
tree | 8e4673631fa6ea8ea6358f4398d8f90f964d60cb /clang/lib/Frontend/FrontendAction.cpp | |
parent | aed46fcbe9188c4ce29481003cc1374593a6a4d7 (diff) | |
download | bcm5719-llvm-fa6214c9523a7af4ba9eb7806f20397795846b52.tar.gz bcm5719-llvm-fa6214c9523a7af4ba9eb7806f20397795846b52.zip |
Frontend: Rename hasASTSupport to hasASTFileSupport, which is more accurate.
llvm-svn: 105580
Diffstat (limited to 'clang/lib/Frontend/FrontendAction.cpp')
-rw-r--r-- | clang/lib/Frontend/FrontendAction.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/Frontend/FrontendAction.cpp b/clang/lib/Frontend/FrontendAction.cpp index 633b82c2e0f..92137a6dc59 100644 --- a/clang/lib/Frontend/FrontendAction.cpp +++ b/clang/lib/Frontend/FrontendAction.cpp @@ -43,7 +43,8 @@ bool FrontendAction::BeginSourceFile(CompilerInstance &CI, if (InputKind == IK_AST) { assert(!usesPreprocessorOnly() && "Attempt to pass AST file to preprocessor only action!"); - assert(hasASTSupport() && "This action does not have AST support!"); + assert(hasASTFileSupport() && + "This action does not have AST file support!"); llvm::IntrusiveRefCntPtr<Diagnostic> Diags(&CI.getDiagnostics()); std::string Error; |