reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/tools/extra/clang-tidy/misc/RedundantExpressionCheck.cpp
  777                                           LhsValue) ||
  784       if ((LhsValue != 0 && Opcode == BO_EQ) ||
  785           (LhsValue == 0 && Opcode == BO_NE))
  788       else if ((LhsValue == 0 && Opcode == BO_EQ) ||
  789                (LhsValue != 0 && Opcode == BO_NE))
  799                                           LhsValue) ||
  805     transformSubToCanonicalAddExpr(LhsOpcode, LhsValue);
  810       if ((Opcode == BO_EQ && APSInt::compareValues(LhsValue, RhsValue) == 0) ||
  811           (Opcode == BO_NE && APSInt::compareValues(LhsValue, RhsValue) != 0)) {
  815                   APSInt::compareValues(LhsValue, RhsValue) != 0) ||
  817                   APSInt::compareValues(LhsValue, RhsValue) == 0)) {