Changeset View
Changeset View
Standalone View
Standalone View
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,102 Lines • ▼ Show 20 Lines | def err_atomic_load_store_uses_lib : Error< | ||||
"available for this target">; | "available for this target">; | ||||
def err_nontemporal_builtin_must_be_pointer : Error< | def err_nontemporal_builtin_must_be_pointer : Error< | ||||
"address argument to nontemporal builtin must be a pointer (%0 invalid)">; | "address argument to nontemporal builtin must be a pointer (%0 invalid)">; | ||||
def err_nontemporal_builtin_must_be_pointer_intfltptr_or_vector : Error< | def err_nontemporal_builtin_must_be_pointer_intfltptr_or_vector : Error< | ||||
"address argument to nontemporal builtin must be a pointer to integer, float, " | "address argument to nontemporal builtin must be a pointer to integer, float, " | ||||
"pointer, or a vector of such types (%0 invalid)">; | "pointer, or a vector of such types (%0 invalid)">; | ||||
def err_nospeculateload_builtin_must_be_pointer_to_pointer_or_integral : Error< | |||||
"argument to load_no_speculate builtin must be a pointer to a pointer or integer " | |||||
"(%0 invalid)">; | |||||
def err_nospeculateload_builtin_bounds_cannot_both_be_null : Error< | |||||
"lower and upper bounds arguments to load_no_speculate builtin must not both " | |||||
"be null">; | |||||
def warn_nospeculateload_builtin_target_not_supported : Warning< | |||||
"this target does not support anti-speculation operations. Your program will " | |||||
"still execute correctly, but speculation will not be inhibited">, | |||||
InGroup<LoadNoSpeculate>; | |||||
def err_deleted_function_use : Error<"attempt to use a deleted function">; | def err_deleted_function_use : Error<"attempt to use a deleted function">; | ||||
def err_deleted_inherited_ctor_use : Error< | def err_deleted_inherited_ctor_use : Error< | ||||
"constructor inherited by %0 from base class %1 is implicitly deleted">; | "constructor inherited by %0 from base class %1 is implicitly deleted">; | ||||
def note_called_by : Note<"called by %0">; | def note_called_by : Note<"called by %0">; | ||||
def err_kern_type_not_void_return : Error< | def err_kern_type_not_void_return : Error< | ||||
"kernel function type %0 must have void return type">; | "kernel function type %0 must have void return type">; | ||||
def err_kern_is_nonstatic_method : Error< | def err_kern_is_nonstatic_method : Error< | ||||
▲ Show 20 Lines • Show All 2,217 Lines • Show Last 20 Lines |