diff --git a/clang/docs/LanguageExtensions.rst b/clang/docs/LanguageExtensions.rst index 17b2f8a00297ba..bbaf31cc9792e1 100644 --- a/clang/docs/LanguageExtensions.rst +++ b/clang/docs/LanguageExtensions.rst @@ -2136,7 +2136,7 @@ between the host and device is known to be compatible. struct OnlySL { int a; int b; - NotPod() : a(0), b(0) {} + OnlySL() : a(0), b(0) {} }; // Not standard layout type because of two different access controls. @@ -2144,16 +2144,17 @@ between the host and device is known to be compatible. int a; private: int b; - } + }; + #pragma OPENCL EXTENSION __cl_clang_non_portable_kernel_param_types : enable kernel void kernel_main( Pod a, - #pragma OPENCL EXTENSION __cl_clang_non_portable_kernel_param_types : enable + OnlySL b, global NotSL *c, - #pragma OPENCL EXTENSION __cl_clang_non_portable_kernel_param_types : disable - global OnlySL *d, + global OnlySL *d ); + #pragma OPENCL EXTENSION __cl_clang_non_portable_kernel_param_types : disable Remove address space builtin function -------------------------------------