Index: clang/include/clang/Basic/DiagnosticSemaKinds.td =================================================================== --- clang/include/clang/Basic/DiagnosticSemaKinds.td +++ clang/include/clang/Basic/DiagnosticSemaKinds.td @@ -7421,6 +7421,9 @@ "member %0 declared here">; def note_member_first_declared_here : Note< "member %0 first declared here">; +def warn_bitwise_instead_of_logical : Warning< + "use of bitwise '%0' with boolean operands">, + InGroup, DefaultIgnore; def warn_bitwise_negation_bool : Warning< "bitwise negation of a boolean expression%select{;| always evaluates to 'true';}0 " "did you mean logical negation?">, Index: clang/lib/Sema/SemaChecking.cpp =================================================================== --- clang/lib/Sema/SemaChecking.cpp +++ clang/lib/Sema/SemaChecking.cpp @@ -13101,6 +13101,18 @@ << OrigE->getSourceRange() << T->isBooleanType() << FixItHint::CreateReplacement(UO->getBeginLoc(), "!"); + if (const auto *BO = dyn_cast(SourceExpr)) + if ((BO->getOpcode() == BO_And || BO->getOpcode() == BO_Or) && + BO->getLHS()->isKnownToHaveBooleanValue() && + BO->getRHS()->isKnownToHaveBooleanValue() && + BO->getLHS()->HasSideEffects(S.Context) && + BO->getRHS()->HasSideEffects(S.Context)) + S.Diag(BO->getBeginLoc(), diag::warn_bitwise_instead_of_logical) + << (BO->getOpcode() == BO_And ? "&" : "|") << OrigE->getSourceRange() + << FixItHint::CreateReplacement( + BO->getOperatorLoc(), + (BO->getOpcode() == BO_And ? "&&" : "||")); + // For conditional operators, we analyze the arguments as if they // were being fed directly into the output. if (auto *CO = dyn_cast(SourceExpr)) { Index: clang/test/Sema/warn-bitwise-and-bool.c =================================================================== --- /dev/null +++ clang/test/Sema/warn-bitwise-and-bool.c @@ -0,0 +1,50 @@ +// RUN: %clang_cc1 -x c -fsyntax-only -verify -Wbool-operation %s +// RUN: %clang_cc1 -x c -fsyntax-only -verify -Wall %s +// RUN: %clang_cc1 -x c -fsyntax-only -Wbool-operation -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck %s +// RUN: %clang_cc1 -x c++ -fsyntax-only -verify -Wbool-operation %s +// RUN: %clang_cc1 -x c++ -fsyntax-only -verify -Wall %s +// RUN: %clang_cc1 -x c++ -fsyntax-only -Wbool-operation -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck %s + +#ifdef __cplusplus +typedef bool boolean; +#else +typedef _Bool boolean; +#endif + +boolean foo(void); +boolean bar(void); +boolean baz(void) __attribute__((const)); +void sink(boolean); + +#define FOO foo() + +void test(boolean a, boolean b, int *p, volatile int *q, int i) { + b = a & b; + b = foo() & a; + b = (p != 0) & (*p == 42); + b = foo() & (*q == 42); // expected-warning {{use of bitwise '&' with boolean operands}} + b = a & foo(); + b = foo() & bar(); // expected-warning {{use of bitwise '&' with boolean operands}} + // CHECK: fix-it:"{{.*}}":{[[@LINE-1]]:13-[[@LINE-1]]:14}:"&&" + b = foo() & !bar(); // expected-warning {{use of bitwise '&' with boolean operands}} + // CHECK: fix-it:"{{.*}}":{[[@LINE-1]]:13-[[@LINE-1]]:14}:"&&" + b = a & baz(); + b = bar() & FOO; // expected-warning {{use of bitwise '&' with boolean operands}} + // CHECK: fix-it:"{{.*}}":{[[@LINE-1]]:13-[[@LINE-1]]:14}:"&&" + b = b & foo(); + b = bar() & (i > 4); + b = (i == 7) & foo(); +#ifdef __cplusplus + b = foo() bitand bar(); // expected-warning {{use of bitwise '&' with boolean operands}} +#endif + + if (foo() & bar()) // expected-warning {{use of bitwise '&' with boolean operands}} + ; + + sink(a & b); + sink(a & foo()); + sink(foo() & bar()); // expected-warning {{use of bitwise '&' with boolean operands}} + + int n = i + 10; + b = (n & (n - 1)); +} Index: clang/test/Sema/warn-bitwise-or-bool.c =================================================================== --- /dev/null +++ clang/test/Sema/warn-bitwise-or-bool.c @@ -0,0 +1,50 @@ +// RUN: %clang_cc1 -x c -fsyntax-only -verify -Wbool-operation %s +// RUN: %clang_cc1 -x c -fsyntax-only -verify -Wall %s +// RUN: %clang_cc1 -x c -fsyntax-only -Wbool-operation -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck %s +// RUN: %clang_cc1 -x c++ -fsyntax-only -verify -Wbool-operation %s +// RUN: %clang_cc1 -x c++ -fsyntax-only -verify -Wall %s +// RUN: %clang_cc1 -x c++ -fsyntax-only -Wbool-operation -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck %s + +#ifdef __cplusplus +typedef bool boolean; +#else +typedef _Bool boolean; +#endif + +boolean foo(void); +boolean bar(void); +boolean baz(void) __attribute__((const)); +void sink(boolean); + +#define FOO foo() + +void test(boolean a, boolean b, int *p, volatile int *q, int i) { + b = a | b; + b = foo() | a; + b = (p != 0) | (*p == 42); + b = foo() | (*q == 42); // expected-warning {{use of bitwise '|' with boolean operands}} + b = a | foo(); + b = foo() | bar(); // expected-warning {{use of bitwise '|' with boolean operands}} + // CHECK: fix-it:"{{.*}}":{[[@LINE-1]]:13-[[@LINE-1]]:14}:"||" + b = foo() | !bar(); // expected-warning {{use of bitwise '|' with boolean operands}} + // CHECK: fix-it:"{{.*}}":{[[@LINE-1]]:13-[[@LINE-1]]:14}:"||" + b = a | baz(); + b = bar() | FOO; // expected-warning {{use of bitwise '|' with boolean operands}} + // CHECK: fix-it:"{{.*}}":{[[@LINE-1]]:13-[[@LINE-1]]:14}:"||" + b = b | foo(); + b = bar() | (i > 4); + b = (i == 7) | foo(); +#ifdef __cplusplus + b = foo() bitor bar(); // expected-warning {{use of bitwise '|' with boolean operands}} +#endif + + if (foo() | bar()) // expected-warning {{use of bitwise '|' with boolean operands}} + ; + + sink(a | b); + sink(a | foo()); + sink(foo() | bar()); // expected-warning {{use of bitwise '|' with boolean operands}} + + int n = i + 10; + b = (n | (n - 1)); +}