summaryrefslogtreecommitdiffstats
path: root/clang/lib/Checker/FlatStore.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'clang/lib/Checker/FlatStore.cpp')
-rw-r--r--clang/lib/Checker/FlatStore.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/clang/lib/Checker/FlatStore.cpp b/clang/lib/Checker/FlatStore.cpp
index fdeeab95293..f427ae1cecc 100644
--- a/clang/lib/Checker/FlatStore.cpp
+++ b/clang/lib/Checker/FlatStore.cpp
@@ -42,13 +42,6 @@ public:
return 0;
}
- SVal getLValueVar(const VarDecl *VD, const LocationContext *LC) {
- return loc::MemRegionVal(MRMgr.getVarRegion(VD, LC));
- }
-
- SVal getLValueString(const StringLiteral* sl);
- SVal getLValueIvar(const ObjCIvarDecl* decl, SVal base);
- SVal getLValueField(const FieldDecl* D, SVal Base);
SVal getLValueElement(QualType elementType, SVal offset, SVal Base);
SVal ArrayToPointer(Loc Array);
Store RemoveDeadBindings(Store store, Stmt* Loc, SymbolReaper& SymReaper,
@@ -133,18 +126,6 @@ Store FlatStoreManager::BindCompoundLiteral(Store store,
return store;
}
-SVal FlatStoreManager::getLValueString(const StringLiteral* sl) {
- return UnknownVal();
-}
-
-SVal FlatStoreManager::getLValueIvar(const ObjCIvarDecl* decl, SVal base) {
- return UnknownVal();
-}
-
-SVal FlatStoreManager::getLValueField(const FieldDecl* D, SVal Base) {
- return UnknownVal();
-}
-
SVal FlatStoreManager::getLValueElement(QualType elementType, SVal offset,
SVal Base) {
return UnknownVal();
OpenPOWER on IntegriCloud