diff options
author | Mehdi Amini <mehdi.amini@apple.com> | 2016-10-08 04:44:18 +0000 |
---|---|---|
committer | Mehdi Amini <mehdi.amini@apple.com> | 2016-10-08 04:44:18 +0000 |
commit | 00fa1409ec8d8d6db8597fbe73eac65094e8b425 (patch) | |
tree | 9c3675ad2540add82493fb1e04f5e209630d2a34 /llvm/lib/LTO/ThinLTOCodeGenerator.cpp | |
parent | 01e0e136bd6039a3a45acf83dd6d561f307e4963 (diff) | |
download | bcm5719-llvm-00fa1409ec8d8d6db8597fbe73eac65094e8b425.tar.gz bcm5719-llvm-00fa1409ec8d8d6db8597fbe73eac65094e8b425.zip |
ThinLTO: handles modules with empty summaries
We need to add an entry in the combined-index for modules that have
a hash but otherwise empty summary, this is needed so that we can
get the hash for the module.
Also, if no entry is present in the combined index for a module, we
need to skip it when trying to compute a cache entry.
Differential Revision: https://reviews.llvm.org/D25300
llvm-svn: 283654
Diffstat (limited to 'llvm/lib/LTO/ThinLTOCodeGenerator.cpp')
-rw-r--r-- | llvm/lib/LTO/ThinLTOCodeGenerator.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/LTO/ThinLTOCodeGenerator.cpp b/llvm/lib/LTO/ThinLTOCodeGenerator.cpp index f4232dc2f89..8afe13d8e16 100644 --- a/llvm/lib/LTO/ThinLTOCodeGenerator.cpp +++ b/llvm/lib/LTO/ThinLTOCodeGenerator.cpp @@ -234,6 +234,10 @@ public: if (CachePath.empty()) return; + if (!Index.modulePaths().count(ModuleID)) + // The module does not have an entry, it can't have a hash at all + return; + // Compute the unique hash for this entry // This is based on the current compiler version, the module itself, the // export list, the hash for every single module in the import list, the |