Use llvm::copy. NFC

llvm-svn: 347126
This commit is contained in:
Fangrui Song
2018-11-17 01:44:25 +00:00
parent a900471d58
commit 7570932977
22 changed files with 38 additions and 42 deletions

View File

@@ -4026,7 +4026,7 @@ void ModuleBitcodeWriter::writeModuleHash(size_t BlockStartPos) {
if (ModHash)
// Save the written hash value.
std::copy(std::begin(Vals), std::end(Vals), std::begin(*ModHash));
llvm::copy(Vals, std::begin(*ModHash));
}
}