no need to check this: content cache is already 1-1 map with fileentries.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62402 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Driver/CacheTokens.cpp b/Driver/CacheTokens.cpp
index 33986f8..4693b20 100644
--- a/Driver/CacheTokens.cpp
+++ b/Driver/CacheTokens.cpp
@@ -480,8 +480,7 @@
if (!P.isAbsolute())
continue;
- PCHMap::iterator PI = PM.find(FE); // Have we already processed this file?
- if (PI != PM.end()) continue;
+ assert(!PM.count(FE) && "fileinfo's are not uniqued on FileEntry?");
const llvm::MemoryBuffer *B = C.getBuffer();
if (!B) continue;