diff options
Diffstat (limited to 'llvm/lib/LTO/LTO.cpp')
-rw-r--r-- | llvm/lib/LTO/LTO.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/LTO/LTO.cpp b/llvm/lib/LTO/LTO.cpp index b12be4a..97d23fe 100644 --- a/llvm/lib/LTO/LTO.cpp +++ b/llvm/lib/LTO/LTO.cpp @@ -1439,9 +1439,9 @@ public: AddStream(std::move(AddStream)), Cache(std::move(Cache)), ShouldEmitIndexFiles(ShouldEmitIndexFiles) { auto &Defs = CombinedIndex.cfiFunctionDefs(); - CfiFunctionDefs.insert(Defs.guid_begin(), Defs.guid_end()); + CfiFunctionDefs.insert_range(Defs.guids()); auto &Decls = CombinedIndex.cfiFunctionDecls(); - CfiFunctionDecls.insert(Decls.guid_begin(), Decls.guid_end()); + CfiFunctionDecls.insert_range(Decls.guids()); } virtual Error runThinLTOBackendThread( |