[llvm] [offload][SYCL] Add SYCL Module splitting. (PR #131347)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 17 07:25:45 PDT 2025
================
@@ -0,0 +1,26 @@
+//===------------ SYCLUtils.h - 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
+//
+//===----------------------------------------------------------------------===//
+// Utility functions for SYCL.
+//===----------------------------------------------------------------------===//
+#ifndef LLVM_TRANSFORMS_UTILS_SYCLUTILS_H
+#define LLVM_TRANSFORMS_UTILS_SYCLUTILS_H
+
+#include <llvm/ADT/SmallString.h>
+#include <llvm/ADT/SmallVector.h>
----------------
arsenm wrote:
```suggestion
#include "llvm/ADT/SmallString.h"
#include "llvm/ADT/SmallVector.h"
```
https://github.com/llvm/llvm-project/pull/131347
More information about the llvm-commits
mailing list