// Use PTH?
if (!TokenCache.empty())
- PTHMgr.reset(PTHManager::Create(TokenCache));
+ PTHMgr.reset(PTHManager::Create(TokenCache, &Diags));
// Create the Preprocessor.
llvm::OwningPtr<Preprocessor> PP(new Preprocessor(Diags, LangInfo, Target,
class FileEntry;
class PTHLexer;
+class Diagnostic;
class PTHManager : public IdentifierInfoLookup {
friend class PTHLexer;
/// Create - This method creates PTHManager objects. The 'file' argument
/// is the name of the PTH file. This method returns NULL upon failure.
- static PTHManager *Create(const std::string& file);
+ static PTHManager *Create(const std::string& file, Diagnostic* Diags = 0);
void setPreprocessor(Preprocessor *pp) { PP = pp; }
free(PerIDCache);
}
-PTHManager* PTHManager::Create(const std::string& file) {
+PTHManager* PTHManager::Create(const std::string& file, Diagnostic* Diags) {
// Memory map the PTH file.
llvm::OwningPtr<llvm::MemoryBuffer>
File(llvm::MemoryBuffer::getFile(file.c_str()));
- if (!File)
+ if (!File) {
+ if (Diags) {
+ unsigned DiagID = Diags->getCustomDiagID(Diagnostic::Note,
+ "PTH file %0 could not be read");
+ Diags->Report(FullSourceLoc(), DiagID) << file;
+ }
+
return 0;
+ }
// Get the buffer ranges and check if there are at least three 32-bit
// words at the end of the file.