From: Ted Kremenek Date: Tue, 1 May 2012 17:56:57 +0000 (+0000) Subject: Remove dead code found by static analyzer. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1b9a688fbaae610398676186dcd1f3a596a46571;p=clang Remove dead code found by static analyzer. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@155923 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Frontend/CompilerInstance.cpp b/lib/Frontend/CompilerInstance.cpp index 803e418e24..22b38c1206 100644 --- a/lib/Frontend/CompilerInstance.cpp +++ b/lib/Frontend/CompilerInstance.cpp @@ -861,11 +861,6 @@ Module *CompilerInstance::loadModule(SourceLocation ImportLoc, // Determine what file we're searching from. SourceManager &SourceMgr = getSourceManager(); SourceLocation ExpandedImportLoc = SourceMgr.getExpansionLoc(ImportLoc); - const FileEntry *CurFile - = SourceMgr.getFileEntryForID(SourceMgr.getFileID(ExpandedImportLoc)); - if (!CurFile) - CurFile = SourceMgr.getFileEntryForID(SourceMgr.getMainFileID()); - StringRef ModuleName = Path[0].first->getName(); SourceLocation ModuleNameLoc = Path[0].second;