Keep track of the size/modification time of each file source-location

entry in a precompiled header, so that we can detect modified files
even when we miss in the stat cache.

llvm-svn: 99149
This commit is contained in:
Douglas Gregor
2010-03-21 22:49:54 +00:00
parent 9f2284121a
commit b41ca8f2ae
4 changed files with 23 additions and 7 deletions

View File

@@ -93,8 +93,7 @@ const llvm::MemoryBuffer *ContentCache::getBuffer(Diagnostic &Diag,
<< Entry->getName() << ErrorStr;
Buffer.setInt(true);
} else if (FileInfo.st_size != Entry->getSize() ||
FileInfo.st_mtime != Entry->getModificationTime() ||
FileInfo.st_ino != Entry->getInode()) {
FileInfo.st_mtime != Entry->getModificationTime()) {
// Check that the file's size, modification time, and inode are
// the same as in the file entry (which may have come from a
// stat cache).