diff --git a/llvm/lib/ProfileData/InstrProfCorrelator.cpp b/llvm/lib/ProfileData/InstrProfCorrelator.cpp --- a/llvm/lib/ProfileData/InstrProfCorrelator.cpp +++ b/llvm/lib/ProfileData/InstrProfCorrelator.cpp @@ -41,7 +41,7 @@ C->CountersSectionStart = CountersSection->getAddress(); C->CountersSectionEnd = C->CountersSectionStart + CountersSection->getSize(); C->ShouldSwapBytes = Obj.isLittleEndian() != sys::IsLittleEndianHost; - return C; + return Expected>(std::move(C)); } llvm::Expected>