[clang] 78b72d6 - [StaticAnalyzer] Remove unused declaration evalLoadCommon

Kazu Hirata via cfe-commits cfe-commits at lists.llvm.org
Sat May 27 14:54:13 PDT 2023


Author: Kazu Hirata
Date: 2023-05-27T14:53:51-07:00
New Revision: 78b72d695ff8b61edfaec82a7d3ac8d5d52bc3bd

URL: https://github.com/llvm/llvm-project/commit/78b72d695ff8b61edfaec82a7d3ac8d5d52bc3bd
DIFF: https://github.com/llvm/llvm-project/commit/78b72d695ff8b61edfaec82a7d3ac8d5d52bc3bd.diff

LOG: [StaticAnalyzer] Remove unused declaration evalLoadCommon

The corresponding function definition was removed by:

  commit e0fb481cc57f5a9fb4908ab0a871c49d7ee61382
  Author: Artem Dergachev <artem.dergachev at gmail.com>
  Date:   Fri May 4 23:01:10 2018 +0000

Added: 
    

Modified: 
    clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h

Removed: 
    


################################################################################
diff  --git a/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h b/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h
index 8c3d9120788d3..5e93a46b38892 100644
--- a/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h
+++ b/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h
@@ -773,15 +773,6 @@ class ExprEngine {
   void finishArgumentConstruction(ExplodedNodeSet &Dst, ExplodedNode *Pred,
                                   const CallEvent &Call);
 
-  void evalLoadCommon(ExplodedNodeSet &Dst,
-                      const Expr *NodeEx,  /* Eventually will be a CFGStmt */
-                      const Expr *BoundEx,
-                      ExplodedNode *Pred,
-                      ProgramStateRef St,
-                      SVal location,
-                      const ProgramPointTag *tag,
-                      QualType LoadTy);
-
   void evalLocation(ExplodedNodeSet &Dst,
                     const Stmt *NodeEx, /* This will eventually be a CFGStmt */
                     const Stmt *BoundEx,


        


More information about the cfe-commits mailing list