[llvm] [offload][SYCL] Add SYCL Module splitting (PR #119713)
Alexey Bader via llvm-commits
llvm-commits at lists.llvm.org
Sun Feb 9 21:49:37 PST 2025
================
@@ -0,0 +1,27 @@
+//===------------ SYCLUtils.cpp - SYCL utility functions ------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+// SYCL utility functions.
+//===----------------------------------------------------------------------===//
+#include "llvm/Transforms/Utils/SYCLUtils.h"
+#include "llvm/ADT/StringExtras.h"
+#include "llvm/Support/raw_ostream.h"
+
+namespace llvm {
+
+void writeSYCLStringTable(const SYCLStringTable &Table, raw_ostream &OS) {
+ assert(Table.size() > 0 && "table should contain at least column titles");
+ size_t numberColumns = Table[0].size();
----------------
bader wrote:
This variable is used only in asserts, so it's unused in the builds with disabled assertions. I suggest remove it and use `Table[0].size()` in asserts instead.
https://github.com/llvm/llvm-project/pull/119713
More information about the llvm-commits
mailing list