diff options
-rw-r--r-- | llvm/tools/gold/gold-plugin.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/tools/gold/gold-plugin.cpp b/llvm/tools/gold/gold-plugin.cpp index d73e9492266..e52606b8828 100644 --- a/llvm/tools/gold/gold-plugin.cpp +++ b/llvm/tools/gold/gold-plugin.cpp @@ -855,10 +855,8 @@ static ld_plugin_status allSymbolsReadHook(raw_fd_ostream *ApiFile) { getFunctionIndexForFile(F, File); // Skip files without a function summary. - if (!Index) - continue; - - CombinedIndex.mergeFrom(std::move(Index), ++NextModuleId); + if (Index) + CombinedIndex.mergeFrom(std::move(Index), ++NextModuleId); if (release_input_file(F.handle) != LDPS_OK) message(LDPL_FATAL, "Failed to release file information"); |