Changeset View
Changeset View
Standalone View
Standalone View
cfe/trunk/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 6,485 Lines • ▼ Show 20 Lines | |||||
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">; | ||||
def err_va_arg_in_device : Error< | def err_va_arg_in_device : Error< | ||||
"CUDA device code does not support va_arg">; | "CUDA device code does not support va_arg">; | ||||
def err_alias_not_supported_on_nvptx : Error<"CUDA does not support aliases">; | def err_alias_not_supported_on_nvptx : Error<"CUDA does not support aliases">; | ||||
def err_cuda_unattributed_constexpr_cannot_overload_device : Error< | |||||
"constexpr function '%0' without __host__ or __device__ attributes cannot " | |||||
"overload __device__ function with same signature. Add a __host__ " | |||||
"attribute, or build with -fno-cuda-host-device-constexpr.">; | |||||
def note_cuda_conflicting_device_function_declared_here : Note< | |||||
"conflicting __device__ function declared here">; | |||||
def err_dynamic_var_init : Error< | def err_dynamic_var_init : Error< | ||||
"dynamic initialization is not supported for " | "dynamic initialization is not supported for " | ||||
"__device__, __constant__, and __shared__ variables.">; | "__device__, __constant__, and __shared__ variables.">; | ||||
def err_shared_var_init : Error< | def err_shared_var_init : Error< | ||||
"initialization is not supported for __shared__ variables.">; | "initialization is not supported for __shared__ variables.">; | ||||
def warn_non_pod_vararg_with_format_string : Warning< | def warn_non_pod_vararg_with_format_string : Warning< | ||||
"cannot pass %select{non-POD|non-trivial}0 object of type %1 to variadic " | "cannot pass %select{non-POD|non-trivial}0 object of type %1 to variadic " | ||||
▲ Show 20 Lines • Show All 1,892 Lines • Show Last 20 Lines |