diff options
author | Alp Toker <alp@nuanti.com> | 2013-11-27 05:22:15 +0000 |
---|---|---|
committer | Alp Toker <alp@nuanti.com> | 2013-11-27 05:22:15 +0000 |
commit | 965f88258843547d8226ec630c4b810a04a06ff4 (patch) | |
tree | 6c5ab4da1ca441171f9207ce9484a6b9ecb20a2a /clang/lib/Frontend/FrontendAction.cpp | |
parent | d35031ee92be92b8c6da8628b8a1e2fa27274402 (diff) | |
download | bcm5719-llvm-965f88258843547d8226ec630c4b810a04a06ff4.tar.gz bcm5719-llvm-965f88258843547d8226ec630c4b810a04a06ff4.zip |
Remove a whole lot of unused variables
There are about 30 removed in this patch, generated by a new FixIt I haven't
got round to submitting yet.
llvm-svn: 195814
Diffstat (limited to 'clang/lib/Frontend/FrontendAction.cpp')
-rw-r--r-- | clang/lib/Frontend/FrontendAction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Frontend/FrontendAction.cpp b/clang/lib/Frontend/FrontendAction.cpp index 075fe93d584..49d01f9d372 100644 --- a/clang/lib/Frontend/FrontendAction.cpp +++ b/clang/lib/Frontend/FrontendAction.cpp @@ -180,7 +180,7 @@ bool FrontendAction::BeginSourceFile(CompilerInstance &CI, "This action does not have AST file support!"); IntrusiveRefCntPtr<DiagnosticsEngine> Diags(&CI.getDiagnostics()); - std::string Error; + ASTUnit *AST = ASTUnit::LoadFromASTFile(InputFile, Diags, CI.getFileSystemOpts()); if (!AST) |