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.
1 parent 22ff7c5 commit 092dbfaCopy full SHA for 092dbfa
llvm/include/llvm/ExecutionEngine/Orc/Shared/WrapperFunctionUtils.h
@@ -503,8 +503,10 @@ class WrapperFunction<SPSRetTagT(SPSTagTs...)> {
503
504
SPSInputBuffer IB(R.data(), R.size());
505
if (auto Err = detail::ResultDeserializer<SPSRetTagT, RetT>::deserialize(
506
- RetVal, R.data(), R.size()))
+ RetVal, R.data(), R.size())) {
507
SDR(std::move(Err), std::move(RetVal));
508
+ return;
509
+ }
510
511
SDR(Error::success(), std::move(RetVal));
512
};
0 commit comments