From: Marco Antognini Date: Wed, 20 Apr 2022 09:56:19 +0000 (+0200) Subject: [Analyzer] Remove undefined function X-Git-Tag: upstream/15.0.7~9193 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bf0bcb5e539b1177cb2023691a13635e8cab5d2f;p=platform%2Fupstream%2Fllvm.git [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 --- 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;