1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 10:42:39 +01:00

[ORC] Fix missing std::move.

This commit is contained in:
Lang Hames 2021-06-15 21:42:58 +10:00
parent 0c8cd2ec6f
commit 792e37b227

View File

@ -182,7 +182,7 @@ serializeViaSPSToWrapperFunctionResult(const ArgTs &...Args) {
return make_error<StringError>(
"Error serializing arguments to blob in call",
inconvertibleErrorCode());
return Result;
return std::move(Result);
}
template <typename RetT> class WrapperFunctionHandlerCaller {