https://github.com/Fznamznon updated https://github.com/llvm/llvm-project/pull/200200
>From 28e82ca2673448f0ebc77fcb3689230fa2e13798 Mon Sep 17 00:00:00 2001 From: "Podchishchaeva, Mariya" <[email protected]> Date: Thu, 28 May 2026 07:59:22 -0700 Subject: [PATCH 1/2] [clang][doc][SYCL] Add a very first SYCL release note --- clang/docs/ReleaseNotes.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/clang/docs/ReleaseNotes.rst b/clang/docs/ReleaseNotes.rst index 11cce36a0906c..80d1339d4e93c 100644 --- a/clang/docs/ReleaseNotes.rst +++ b/clang/docs/ReleaseNotes.rst @@ -942,6 +942,12 @@ OpenMP Support - Added support for ``local`` clause with declare_target directive when OpenMP >= 60. +SYCL Support +-------------- +- Clang now assumes default target for SYCL device compilation is 64-bit SPIR-V + and it now diagnoses if a non-supporting target is specified via command line. + (#GH167358) + Improvements ^^^^^^^^^^^^ - Improved substitution performance in concept checking. (#GH172266) >From 4648750b14a1e10e4b9e369d7ed4ed88a21fcff3 Mon Sep 17 00:00:00 2001 From: Mariya Podchishchaeva <[email protected]> Date: Fri, 29 May 2026 10:01:55 +0200 Subject: [PATCH 2/2] Apply suggestion from @Fznamznon --- clang/docs/ReleaseNotes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/docs/ReleaseNotes.rst b/clang/docs/ReleaseNotes.rst index 80d1339d4e93c..c302a121457b5 100644 --- a/clang/docs/ReleaseNotes.rst +++ b/clang/docs/ReleaseNotes.rst @@ -943,7 +943,7 @@ OpenMP Support OpenMP >= 60. SYCL Support --------------- +------------ - Clang now assumes default target for SYCL device compilation is 64-bit SPIR-V and it now diagnoses if a non-supporting target is specified via command line. (#GH167358) _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
