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 248 Lines • ▼ Show 20 Lines | |||||
def err_redeclaration_different_type : Error< | def err_redeclaration_different_type : Error< | ||||
"redeclaration of %0 with a different type%diff{: $ vs $|}1,2">; | "redeclaration of %0 with a different type%diff{: $ vs $|}1,2">; | ||||
def err_bad_variable_name : Error< | def err_bad_variable_name : Error< | ||||
"%0 cannot be the name of a variable or data member">; | "%0 cannot be the name of a variable or data member">; | ||||
def err_bad_parameter_name : Error< | def err_bad_parameter_name : Error< | ||||
"%0 cannot be the name of a parameter">; | "%0 cannot be the name of a parameter">; | ||||
def err_parameter_name_omitted : Error<"parameter name omitted">; | def err_parameter_name_omitted : Error<"parameter name omitted">; | ||||
def err_anyx86_interrupt_attribute : Error< | |||||
"%select{x86|x86-64}0 'interrupt' attribute only applies to functions that " | |||||
"have %select{a 'void' return type|" | |||||
"only a pointer parameter optionally followed by an integer parameter|" | |||||
"a pointer as the first parameter|a %2 type as the second parameter}1">; | |||||
def err_anyx86_interrupt_called : Error< | |||||
"interrupt service routine cannot be called directly">; | |||||
def warn_mips_interrupt_attribute : Warning< | def warn_mips_interrupt_attribute : Warning< | ||||
"MIPS 'interrupt' attribute only applies to functions that have " | "MIPS 'interrupt' attribute only applies to functions that have " | ||||
"%select{no parameters|a 'void' return type}0">, | "%select{no parameters|a 'void' return type}0">, | ||||
InGroup<IgnoredAttributes>; | InGroup<IgnoredAttributes>; | ||||
def warn_unused_parameter : Warning<"unused parameter %0">, | def warn_unused_parameter : Warning<"unused parameter %0">, | ||||
InGroup<UnusedParameter>, DefaultIgnore; | InGroup<UnusedParameter>, DefaultIgnore; | ||||
def warn_unused_variable : Warning<"unused variable %0">, | def warn_unused_variable : Warning<"unused variable %0">, | ||||
InGroup<UnusedVariable>, DefaultIgnore; | InGroup<UnusedVariable>, DefaultIgnore; | ||||
▲ Show 20 Lines • Show All 7,960 Lines • Show Last 20 Lines |