forked from OSchip/llvm-project
Fix for buildbot failure: https://lab.llvm.org/buildbot#builders/110/builds/11051
after https://reviews.llvm.org/D121005
This commit is contained in:
parent
ae4eb938c0
commit
dedf006fa9
|
@ -115,7 +115,7 @@ Expected<std::unique_ptr<ObjectFile>> createObjectFileFromYamlDescription(
|
|||
if (!IsValidFormat(*Obj))
|
||||
return createError("wrong file format");
|
||||
|
||||
return Obj;
|
||||
return std::move(Obj);
|
||||
}
|
||||
|
||||
// Call objcopy::executeObjcopyOnBinary for \p Config and \p In. \p DataVector
|
||||
|
|
Loading…
Reference in New Issue