Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaOpenCLCXX / restricted.clcpp
blob2a84b4138b460bab275b228c1da9fac250c70acf
1 // RUN: %clang_cc1 %s -triple spir-unknown-unknown -pedantic -verify -fsyntax-only
3 // This test checks that various C/C++/OpenCL C constructs are not available in
4 // C++ for OpenCL.
6 // Test that typeid is not available.
7 namespace std {
8   // Provide a dummy std::type_info so that we can use typeid.
9   class type_info {
10     int a;
11   };
13 __constant std::type_info int_ti = typeid(int);
14 // expected-error@-1 {{'typeid' is not supported in C++ for OpenCL}}
16 // Test that dynamic_cast is not available in C++ for OpenCL.
17 class A {
18 public:
19   int a;
22 class B : public A {
23   int b;
26 B *test_dynamic_cast(B *p) {
27   return dynamic_cast<B *>(p);
28   // expected-error@-1 {{'dynamic_cast' is not supported in C++ for OpenCL}}
31 // Test storage class qualifiers.
32 __constant _Thread_local int a = 1;
33 // expected-error@-1 {{C++ for OpenCL version 1.0 does not support the '_Thread_local' storage class specifier}}
34 // expected-warning@-2 {{'_Thread_local' is a C11 extension}}
35 // expected-error@-3 {{thread-local storage is not supported for the current target}}
36 __constant __thread int b = 2;
37 // expected-error@-1 {{C++ for OpenCL version 1.0 does not support the '__thread' storage class specifier}}
38 // expected-error@-2 {{thread-local storage is not supported for the current target}}
39 kernel void test_storage_classes() {
40   register int x;
41   // expected-error@-1 {{C++ for OpenCL version 1.0 does not support the 'register' storage class specifier}}
42   thread_local int y;
43   // expected-error@-1 {{C++ for OpenCL version 1.0 does not support the 'thread_local' storage class specifier}}
44   // expected-error@-2 {{thread-local storage is not supported for the current target}}