Silence dead store warning. It is conceptually possible we will
authorTed Kremenek <kremenek@apple.com>
Fri, 12 Oct 2012 22:56:33 +0000 (22:56 +0000)
committerTed Kremenek <kremenek@apple.com>
Fri, 12 Oct 2012 22:56:33 +0000 (22:56 +0000)
add more code that references SourceFile, so removing the dead store
doesn't seem appropriate for the long term.

llvm-svn: 165837

clang/lib/Basic/SourceManager.cpp

index 65bd601..eefaacc 100644 (file)
@@ -1577,6 +1577,7 @@ FileID SourceManager::translateFile(const FileEntry *SourceFile) const {
     }      
   }
   
+  (void) SourceFile;
   return FirstFID;
 }