Changeset View
Changeset View
Standalone View
Standalone View
clang/include/clang/Basic/DiagnosticSemaKinds.td
- This file is larger than 256 KB, so syntax highlighting is disabled by default.
Show First 20 Lines • Show All 7,987 Lines • ▼ Show 20 Lines | |||||
def err_global_call_not_config : Error< | def err_global_call_not_config : Error< | ||||
"call to global function %0 not configured">; | "call to global function %0 not configured">; | ||||
def err_ref_bad_target : Error< | def err_ref_bad_target : Error< | ||||
"reference to %select{__device__|__global__|__host__|__host__ __device__}0 " | "reference to %select{__device__|__global__|__host__|__host__ __device__}0 " | ||||
"function %1 in %select{__device__|__global__|__host__|__host__ __device__}2 function">; | "function %1 in %select{__device__|__global__|__host__|__host__ __device__}2 function">; | ||||
def err_ref_bad_target_global_initializer : Error< | def err_ref_bad_target_global_initializer : Error< | ||||
"reference to %select{__device__|__global__|__host__|__host__ __device__}0 " | "reference to %select{__device__|__global__|__host__|__host__ __device__}0 " | ||||
"function %1 in global initializer">; | "function %1 in global initializer">; | ||||
def err_capture_bad_target : Error< | |||||
"capture host variable %0 by reference in device or host device lambda function">; | |||||
def err_capture_bad_target_this_ptr : Error< | |||||
"capture host side class data member by this pointer in device or host device lambda function">; | |||||
def warn_kern_is_method : Extension< | def warn_kern_is_method : Extension< | ||||
"kernel function %0 is a member function; this may not be accepted by nvcc">, | "kernel function %0 is a member function; this may not be accepted by nvcc">, | ||||
InGroup<CudaCompat>; | InGroup<CudaCompat>; | ||||
def warn_kern_is_inline : Warning< | def warn_kern_is_inline : Warning< | ||||
"ignored 'inline' attribute on kernel function %0">, | "ignored 'inline' attribute on kernel function %0">, | ||||
InGroup<CudaCompat>; | InGroup<CudaCompat>; | ||||
def err_variadic_device_fn : Error< | def err_variadic_device_fn : Error< | ||||
"CUDA device code does not support variadic functions">; | "CUDA device code does not support variadic functions">; | ||||
▲ Show 20 Lines • Show All 2,850 Lines • Show Last 20 Lines |