xref: /llvm-project/clang/test/SemaSYCL/kernel-attribute-on-non-sycl.cpp (revision c094e7dc4b3f9d1c1e590b008bb1cc46e3496abd)
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
3 
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
10 
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);
15