зеркало из https://github.com/microsoft/clang-1.git
Make -Wshift-op-parentheses a subgroup of -Wparentheses
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@165653 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
dbd9197574
Коммит
831339c36e
|
@ -317,6 +317,7 @@ def ParenthesesOnEquality : DiagGroup<"parentheses-equality">;
|
|||
def Parentheses : DiagGroup<"parentheses",
|
||||
[LogicalOpParentheses,
|
||||
BitwiseOpParentheses,
|
||||
ShiftOpParentheses,
|
||||
ParenthesesOnEquality,
|
||||
DanglingElse]>;
|
||||
|
||||
|
|
|
@ -33,3 +33,11 @@
|
|||
//
|
||||
// CHECK-ENUM-CONVERSION: -Wenum-conversion
|
||||
// CHECK-NO-ENUM-CONVERSION-NOT: -Wenum-conversion
|
||||
|
||||
// Test if -Wshift-op-parentheses is a subgroup of -Wparentheses
|
||||
// RUN: diagtool show-enabled --no-levels -Wno-parentheses -Wshift-op-parentheses %s | FileCheck --check-prefix CHECK-SHIFT-OP-PARENTHESES %s
|
||||
// RUN: diagtool show-enabled --no-levels %s | FileCheck --check-prefix CHECK-SHIFT-OP-PARENTHESES %s
|
||||
// RUN: diagtool show-enabled --no-levels -Wno-parentheses %s | FileCheck --check-prefix CHECK-NO-SHIFT-OP-PARENTHESES %s
|
||||
//
|
||||
// CHECK-SHIFT-OP-PARENTHESES: -Wshift-op-parentheses
|
||||
// CHECK-NO-SHIFT-OP-PARENTHESES-NOT: -Wshift-op-parentheses
|
||||
|
|
Загрузка…
Ссылка в новой задаче