1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

[PGO] Fix a use-after-move. NFC.

llvm-svn: 284664
This commit is contained in:
Rong Xu 2016-10-19 23:31:59 +00:00
parent 56dd1ad215
commit ceabec2f7e

View File

@ -158,13 +158,14 @@ static void loadInput(const WeightedFile &Input, WriterContext *WC) {
}
for (auto &I : *Reader) {
const StringRef FuncName = I.Name;
if (Error E = WC->Writer.addRecord(std::move(I), Input.Weight)) {
// Only show hint the first time an error occurs.
instrprof_error IPE = InstrProfError::take(std::move(E));
std::unique_lock<std::mutex> ErrGuard{WC->ErrLock};
bool firstTime = WC->WriterErrorCodes.insert(IPE).second;
handleMergeWriterError(make_error<InstrProfError>(IPE), Input.Filename,
I.Name, firstTime);
FuncName, firstTime);
}
}
if (Reader->hasError())