[llvm] [offload][SYCL] Add SYCL Module splitting (PR #119713)
Fraser Cormack via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 4 06:35:23 PST 2025
================
@@ -123,6 +189,16 @@ int main(int argc, char **argv) {
Out->keep();
};
+ if (SYCLSplitMode != IRSplitMode::IRSM_NONE) {
+ auto E = runSYCLSplitModule(std::move(M));
+ if (E) {
+ errs() << E << "\n";
----------------
frasercrmck wrote:
Should we return 1 if there's an error? Looks like there's a chance we return 0 on error here.
https://github.com/llvm/llvm-project/pull/119713
More information about the llvm-commits
mailing list