summaryrefslogtreecommitdiffstats
path: root/clang/lib/Basic/SourceManager.cpp
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2010-03-21 22:49:54 +0000
committerDouglas Gregor <dgregor@apple.com>2010-03-21 22:49:54 +0000
commitb41ca8f2aeb085306fc8c1027fa621ce0a398fdc (patch)
tree854f813eb85e07fd827a89dae462b8685ee5daad /clang/lib/Basic/SourceManager.cpp
parent9f2284121a4fc4e108c93ab2f7b045700617bb72 (diff)
downloadbcm5719-llvm-b41ca8f2aeb085306fc8c1027fa621ce0a398fdc.tar.gz
bcm5719-llvm-b41ca8f2aeb085306fc8c1027fa621ce0a398fdc.zip
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
Diffstat (limited to 'clang/lib/Basic/SourceManager.cpp')
-rw-r--r--clang/lib/Basic/SourceManager.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/lib/Basic/SourceManager.cpp b/clang/lib/Basic/SourceManager.cpp
index 6def967c4cf..c34f3e25439 100644
--- a/clang/lib/Basic/SourceManager.cpp
+++ b/clang/lib/Basic/SourceManager.cpp
@@ -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).
OpenPOWER on IntegriCloud