Searched refs:LhsSymbol (Results 1 – 1 of 1) sorted by relevance
/external/llvm-project/clang-tools-extra/clang-tidy/misc/ |
D | RedundantExpressionCheck.cpp | 992 const Expr *LhsSymbol = nullptr, *RhsSymbol = nullptr; in checkArithmeticExpr() local 998 if (!retrieveBinOpIntegerConstantExpr(Result, "lhs", LhsOpcode, LhsSymbol, in checkArithmeticExpr() 1001 !areEquivalentExpr(LhsSymbol, RhsSymbol)) in checkArithmeticExpr() 1020 if (!retrieveBinOpIntegerConstantExpr(Result, "lhs", LhsOpcode, LhsSymbol, in checkArithmeticExpr() 1024 !areEquivalentExpr(LhsSymbol, RhsSymbol)) in checkArithmeticExpr() 1069 const Expr *LhsSymbol = nullptr; in checkBitwiseExpr() local 1071 if (!retrieveBinOpIntegerConstantExpr(Result, "lhs", LhsOpcode, LhsSymbol, in checkBitwiseExpr() 1144 const Expr *LhsSymbol = nullptr, *RhsSymbol = nullptr; in checkRelationalExpr() local 1150 Result, "lhs", LhsExpr, LhsOpcode, LhsSymbol, LhsValue, LhsConst) || in checkRelationalExpr() 1153 !areEquivalentExpr(LhsSymbol, RhsSymbol)) in checkRelationalExpr() [all …]
|