We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
std::move
lazyDeserialize
2 parents e236404 + 6003a44 commit 97b8b3fCopy full SHA for 97b8b3f
llvm/lib/CGData/CodeGenDataReader.cpp
@@ -125,7 +125,7 @@ Error IndexedCodeGenDataReader::read() {
125
FunctionMapRecord.setReadStableFunctionMapNames(
126
IndexedCodeGenDataReadFunctionMapNames);
127
if (IndexedCodeGenDataLazyLoading)
128
- FunctionMapRecord.lazyDeserialize(SharedDataBuffer,
+ FunctionMapRecord.lazyDeserialize(std::move(SharedDataBuffer),
129
Header.StableFunctionMapOffset);
130
else
131
FunctionMapRecord.deserialize(Ptr);
0 commit comments