From bf0bcb5e539b1177cb2023691a13635e8cab5d2f Mon Sep 17 00:00:00 2001 From: Marco Antognini Date: Wed, 20 Apr 2022 11:56:19 +0200 Subject: [PATCH] [Analyzer] Remove undefined function This getLValue function was declared in 98db1f990fc2 ([Analyzer] [NFC] Parameter Regions, 2020-05-11) but was never implemented. Reviewed By: NoQ Differential Revision: https://reviews.llvm.org/D124461 --- clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h b/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h index 3204ac4..cf285c1e 100644 --- a/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h +++ b/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h @@ -306,10 +306,6 @@ public: Loc getLValue(const CXXRecordDecl *BaseClass, const SubRegion *Super, bool IsVirtual) const; - /// Get the lvalue for a parameter. - Loc getLValue(const Expr *Call, unsigned Index, - const LocationContext *LC) const; - /// Get the lvalue for a variable reference. Loc getLValue(const VarDecl *D, const LocationContext *LC) const; -- 2.7.4