forked from OSchip/llvm-project
parent
eb231d1582
commit
b88800d882
|
@ -283,7 +283,6 @@ def warn_odr_variable_multiple_def : Warning<
|
|||
"external variable %0 defined in multiple translation units">,
|
||||
InGroup<ODR>;
|
||||
def note_odr_value_here : Note<"declared here with type %0">;
|
||||
def note_odr_defined_here : Note<"also defined here">;
|
||||
def err_odr_function_type_inconsistent : Error<
|
||||
"external function %0 declared with incompatible types in different "
|
||||
"translation units (%1 vs. %2)">;
|
||||
|
|
|
@ -270,8 +270,6 @@ def err_target_unsupported_mcmse : Error<
|
|||
"-mcmse is not supported for %0">;
|
||||
def err_opt_not_valid_with_opt : Error<
|
||||
"option '%0' cannot be specified with '%1'">;
|
||||
def err_opt_not_valid_without_opt : Error<
|
||||
"option '%0' cannot be specified without '%1'">;
|
||||
def err_opt_not_valid_on_target : Error<
|
||||
"option '%0' cannot be specified on this target">;
|
||||
|
||||
|
|
|
@ -182,9 +182,6 @@ def warn_drv_unknown_argument_clang_cl_with_suggestion : Warning<
|
|||
def warn_drv_ycyu_different_arg_clang_cl : Warning<
|
||||
"support for '/Yc' and '/Yu' with different filenames not implemented yet; flags ignored">,
|
||||
InGroup<ClangClPch>;
|
||||
def warn_drv_ycyu_no_fi_arg_clang_cl : Warning<
|
||||
"support for '%0' without a corresponding /FI flag not implemented yet; flag ignored">,
|
||||
InGroup<ClangClPch>;
|
||||
def warn_drv_yc_multiple_inputs_clang_cl : Warning<
|
||||
"support for '/Yc' with more than one source file not implemented yet; flag ignored">,
|
||||
InGroup<ClangClPch>;
|
||||
|
|
|
@ -64,8 +64,6 @@ def err_fe_backend_unsupported : Error<"%0">, BackendInfo;
|
|||
|
||||
def err_fe_invalid_code_complete_file : Error<
|
||||
"cannot locate code-completion file %0">, DefaultFatal;
|
||||
def err_fe_stdout_binary : Error<"unable to change standard output to binary">,
|
||||
DefaultFatal;
|
||||
def err_fe_dependency_file_requires_MT : Error<
|
||||
"-dependency-file requires at least one -MT or -MQ option">;
|
||||
def err_fe_invalid_plugin_name : Error<
|
||||
|
@ -217,10 +215,6 @@ def err_modules_embed_file_not_found :
|
|||
DefaultFatal;
|
||||
def err_module_header_file_not_found :
|
||||
Error<"module header file '%0' not found">, DefaultFatal;
|
||||
def err_module_header_file_invalid :
|
||||
Error<"unexpected module header file input '%0'">, DefaultFatal;
|
||||
|
||||
def err_interface_stubs : Error<"clang-ifs (-emit-iterface-stubs): %0">;
|
||||
|
||||
def err_test_module_file_extension_version : Error<
|
||||
"test module file extension '%0' has different version (%1.%2) than expected "
|
||||
|
|
|
@ -2469,8 +2469,6 @@ def warn_cxx11_compat_constexpr_body_multiple_return : Warning<
|
|||
InGroup<CXXPre14Compat>, DefaultIgnore;
|
||||
def note_constexpr_body_previous_return : Note<
|
||||
"previous return statement is here">;
|
||||
def err_constexpr_function_try_block : Error<
|
||||
"function try block not allowed in constexpr %select{function|constructor}0">;
|
||||
|
||||
// C++2a function try blocks in constexpr
|
||||
def ext_constexpr_function_try_block_cxx2a : ExtWarn<
|
||||
|
@ -5422,9 +5420,6 @@ def err_arc_mismatched_cast : Error<
|
|||
" to %3 is disallowed with ARC">;
|
||||
def err_arc_nolifetime_behavior : Error<
|
||||
"explicit ownership qualifier on cast result has no effect">;
|
||||
def err_arc_objc_object_in_tag : Error<
|
||||
"ARC forbids %select{Objective-C objects|blocks}0 in "
|
||||
"%select{struct|interface|union|<<ERROR>>|enum}1">;
|
||||
def err_arc_objc_property_default_assign_on_object : Error<
|
||||
"ARC forbids synthesizing a property of an Objective-C object "
|
||||
"with unspecified ownership or storage attribute">;
|
||||
|
@ -7615,8 +7610,6 @@ let CategoryName = "Inline Assembly Issue" in {
|
|||
"invalid lvalue in asm input for constraint '%0'">;
|
||||
def err_asm_invalid_input_constraint : Error<
|
||||
"invalid input constraint '%0' in asm">;
|
||||
def err_asm_immediate_expected : Error<"constraint '%0' expects "
|
||||
"an integer constant expression">;
|
||||
def err_asm_tying_incompatible_types : Error<
|
||||
"unsupported inline asm: input with type "
|
||||
"%diff{$ matching output with type $|}0,1">;
|
||||
|
@ -9905,8 +9898,6 @@ def err_memtag_arg_must_be_pointer : Error<
|
|||
"%0 argument of MTE builtin function must be a pointer (%1 invalid)">;
|
||||
def err_memtag_arg_must_be_integer : Error<
|
||||
"%0 argument of MTE builtin function must be an integer type (%1 invalid)">;
|
||||
def err_memtag_arg_must_be_unsigned : Error<
|
||||
"%0 argument of MTE builtin function must be an unsigned integer type (%1 invalid)">;
|
||||
|
||||
def warn_dereference_of_noderef_type : Warning<
|
||||
"dereferencing %0; was declared with a 'noderef' type">, InGroup<NoDeref>;
|
||||
|
|
Loading…
Reference in New Issue