[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / SemaSYCL / kernel-attribute-on-non-sycl.cpp
blob05b7d3216b884e12864a961a917be7f53657832a
1 // RUN: %clang_cc1 -std=c++11 -fsyntax-only -fsycl-is-device -verify %s
2 // RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify -x c++ %s
4 #ifndef __SYCL_DEVICE_ONLY__
5 // expected-warning@+7 {{'sycl_kernel' attribute ignored}}
6 // expected-warning@+8 {{'sycl_kernel' attribute ignored}}
7 #else
8 // expected-no-diagnostics
9 #endif
11 template <typename T, typename A, int B>
12 __attribute__((sycl_kernel)) void foo(T P);
13 template <typename T, typename A, int B>
14 [[clang::sycl_kernel]] void foo1(T P);