diff options
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/DebugInfo/CodeView/SymbolRecordHelpers.cpp | 2 | ||||
-rw-r--r-- | llvm/lib/LTO/ThinLTOCodeGenerator.cpp | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/llvm/lib/DebugInfo/CodeView/SymbolRecordHelpers.cpp b/llvm/lib/DebugInfo/CodeView/SymbolRecordHelpers.cpp index 51a5a9e9243..2562c633bb9 100644 --- a/llvm/lib/DebugInfo/CodeView/SymbolRecordHelpers.cpp +++ b/llvm/lib/DebugInfo/CodeView/SymbolRecordHelpers.cpp @@ -14,7 +14,7 @@ using namespace llvm; using namespace llvm::codeview; -template <typename RecordT> RecordT createRecord(const CVSymbol &sym) { +template <typename RecordT> static RecordT createRecord(const CVSymbol &sym) { RecordT record(static_cast<SymbolRecordKind>(sym.kind())); cantFail(SymbolDeserializer::deserializeAs<RecordT>(sym, record)); return record; diff --git a/llvm/lib/LTO/ThinLTOCodeGenerator.cpp b/llvm/lib/LTO/ThinLTOCodeGenerator.cpp index d151de17896..5b27cdbfef3 100644 --- a/llvm/lib/LTO/ThinLTOCodeGenerator.cpp +++ b/llvm/lib/LTO/ThinLTOCodeGenerator.cpp @@ -580,6 +580,7 @@ std::unique_ptr<ModuleSummaryIndex> ThinLTOCodeGenerator::linkCombinedIndex() { return CombinedIndex; } +namespace { struct IsExported { const StringMap<FunctionImporter::ExportSetTy> &ExportLists; const DenseSet<GlobalValue::GUID> &GUIDPreservedSymbols; @@ -610,6 +611,7 @@ struct IsPrevailing { return Prevailing->second == S; }; }; +}; // namespace static void computeDeadSymbolsInIndex( ModuleSummaryIndex &Index, |