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 e290d7e commit 35fb506Copy full SHA for 35fb506
sycl-jit/jit-compiler/lib/rtc/DeviceCompilation.cpp
@@ -402,8 +402,7 @@ Expected<RTCBundleInfo> jit_compiler::performPostLink(
402
ModuleDesc{std::unique_ptr<llvm::Module>{&Module}}, SPLIT_NONE,
403
/*IROutputOnly=*/false,
404
/*EmitOnlyKernelsAsEntryPoints=*/true);
405
- bool SplitOccurred = Splitter->remainingSplits() > 1;
406
- assert(!SplitOccurred);
+ assert(Splitter->remainingSplits() == 1);
407
408
// TODO: Call `verifyNoCrossModuleDeviceGlobalUsage` if device globals shall
409
// be processed.
0 commit comments