From 583db1979cfc9db6d3f12f819d19e3248cda87b4 Mon Sep 17 00:00:00 2001 From: Warren Hunt Date: Wed, 28 May 2014 19:17:45 +0000 Subject: Reverting 209503 - Breaks asan blacklists I opened a discussion on cfe-commits. Ideally we've got a few things that need to happen. CompilerRT should probably have blacklists tests. Asan should probably not depend on that specific field. llvm-svn: 209766 --- clang/lib/CodeGen/CodeGenAction.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'clang/lib') diff --git a/clang/lib/CodeGen/CodeGenAction.cpp b/clang/lib/CodeGen/CodeGenAction.cpp index 2fe984226e1..3db1660b805 100644 --- a/clang/lib/CodeGen/CodeGenAction.cpp +++ b/clang/lib/CodeGen/CodeGenAction.cpp @@ -565,12 +565,9 @@ ASTConsumer *CodeGenAction::CreateASTConsumer(CompilerInstance &CI, LinkModuleToUse = ModuleOrErr.get(); } - StringRef MainFileName = getCompilerInstance().getCodeGenOpts().MainFileName; - if (MainFileName.empty()) - MainFileName = InFile; BEConsumer = new BackendConsumer(BA, CI.getDiagnostics(), CI.getCodeGenOpts(), CI.getTargetOpts(), CI.getLangOpts(), - CI.getFrontendOpts().ShowTimers, MainFileName, + CI.getFrontendOpts().ShowTimers, InFile, LinkModuleToUse, OS.release(), *VMContext); return BEConsumer; } -- cgit v1.2.3