================
@@ -214,6 +214,14 @@ class StmtComparer {
     return E1->size() == E2->size();
   }
 
+  bool IsStmtEquivalent(const DeclRefExpr *DRE1, const DeclRefExpr *DRE2) {
+    if (nullptr == DRE1->getDecl() || nullptr == DRE2->getDecl()) {
+      return false;
+    }
+    return IsStructurallyEquivalent(Context, DRE1->getDecl()->getDeclName(),
----------------
cor3ntin wrote:

Shouldn't that simply be `IsStructurallyEquivalent(DRE1->getDecl(), 
DRE2->getDecl())` ?

https://github.com/llvm/llvm-project/pull/66041
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to