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 ec0958c commit 8a5f1efCopy full SHA for 8a5f1ef
llvm/lib/ExecutionEngine/Orc/LLJIT.cpp
@@ -1058,12 +1058,9 @@ LLJIT::LLJIT(LLJITBuilderState &S, Error &Err)
1058
}
1059
1060
1061
- if (S.PrePlatformSetup) {
1062
- if (auto Err2 = S.PrePlatformSetup(*this)) {
1063
- Err = std::move(Err2);
+ if (S.PrePlatformSetup)
+ if ((Err = S.PrePlatformSetup(*this)))
1064
return;
1065
- }
1066
1067
1068
if (!S.SetUpPlatform)
1069
S.SetUpPlatform = setUpGenericLLVMIRPlatform;
0 commit comments