forked from OSchip/llvm-project
Basic: Add -Wswitch-bool to control warn_bool_switch_condition
This warning was missing a flag, add one. test/Misc/warning-flags.c has one fewer entry. llvm-svn: 203522
This commit is contained in:
parent
f322f2fb61
commit
2f1f1818bf
|
@ -326,6 +326,7 @@ def : DiagGroup<"strict-prototypes">;
|
|||
def StrictSelector : DiagGroup<"strict-selector-match">;
|
||||
def MethodDuplicate : DiagGroup<"duplicate-method-match">;
|
||||
def CoveredSwitchDefault : DiagGroup<"covered-switch-default">;
|
||||
def SwitchBool : DiagGroup<"switch-bool">;
|
||||
def SwitchEnum : DiagGroup<"switch-enum">;
|
||||
def Switch : DiagGroup<"switch">;
|
||||
def ImplicitFallthroughPerFunction :
|
||||
|
@ -541,7 +542,7 @@ def Consumed : DiagGroup<"consumed">;
|
|||
// Note that putting warnings in -Wall will not disable them by default. If a
|
||||
// warning should be active _only_ when -Wall is passed in, mark it as
|
||||
// DefaultIgnore in addition to putting it here.
|
||||
def : DiagGroup<"all", [Most, Parentheses, Switch]>;
|
||||
def : DiagGroup<"all", [Most, Parentheses, Switch, SwitchBool]>;
|
||||
|
||||
// Warnings enabled by -pedantic. This is magically filled in by TableGen.
|
||||
def Pedantic : DiagGroup<"pedantic">;
|
||||
|
|
|
@ -6425,7 +6425,7 @@ def err_default_not_in_switch : Error<
|
|||
"'default' statement not in switch statement">;
|
||||
def err_case_not_in_switch : Error<"'case' statement not in switch statement">;
|
||||
def warn_bool_switch_condition : Warning<
|
||||
"switch condition has boolean value">;
|
||||
"switch condition has boolean value">, InGroup<SwitchBool>;
|
||||
def warn_case_value_overflow : Warning<
|
||||
"overflow converting case value to switch condition type (%0 to %1)">,
|
||||
InGroup<Switch>;
|
||||
|
|
|
@ -18,7 +18,7 @@ This test serves two purposes:
|
|||
|
||||
The list of warnings below should NEVER grow. It should gradually shrink to 0.
|
||||
|
||||
CHECK: Warnings without flags (109):
|
||||
CHECK: Warnings without flags (108):
|
||||
CHECK-NEXT: ext_delete_void_ptr_operand
|
||||
CHECK-NEXT: ext_expected_semi_decl_list
|
||||
CHECK-NEXT: ext_explicit_specialization_storage_class
|
||||
|
@ -49,7 +49,6 @@ CHECK-NEXT: warn_accessor_property_type_mismatch
|
|||
CHECK-NEXT: warn_anon_bitfield_width_exceeds_type_size
|
||||
CHECK-NEXT: warn_asm_label_on_auto_decl
|
||||
CHECK-NEXT: warn_bitfield_width_exceeds_type_size
|
||||
CHECK-NEXT: warn_bool_switch_condition
|
||||
CHECK-NEXT: warn_braces_around_scalar_init
|
||||
CHECK-NEXT: warn_c_kext
|
||||
CHECK-NEXT: warn_call_to_pure_virtual_member_function_from_ctor_dtor
|
||||
|
|
Loading…
Reference in New Issue