aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/BasicStore.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2008-10-17 00:03:18 +0000
committerTed Kremenek <kremenek@apple.com>2008-10-17 00:03:18 +0000
commit97ed4f68f5dba3e21e7a490ef0f9ffd3bfead7f8 (patch)
treef3a66afc6ddebc3798f677f7934921cc95644c77 /lib/Analysis/BasicStore.cpp
parentc6f7345e44e079f373d6bdecaa06c7e06574dc27 (diff)
Add transfer function support for ObjCIvarRefExpr.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@57654 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/BasicStore.cpp')
-rw-r--r--lib/Analysis/BasicStore.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/Analysis/BasicStore.cpp b/lib/Analysis/BasicStore.cpp
index f97f8b2c29..15a20c843a 100644
--- a/lib/Analysis/BasicStore.cpp
+++ b/lib/Analysis/BasicStore.cpp
@@ -48,6 +48,7 @@ public:
}
virtual RVal getLValue(const GRState* St, const Expr* Ex);
+ virtual RVal getLValue(const GRState* St, const ObjCIvarDecl* D, RVal Base);
virtual Store
RemoveDeadBindings(Store store, Stmt* Loc, const LiveVariables& Live,
@@ -154,6 +155,11 @@ RVal BasicStoreManager::GetRVal(Store St, LVal LV, QualType T) {
return UnknownVal();
}
+RVal BasicStoreManager::getLValue(const GRState* St, const ObjCIvarDecl* D,
+ RVal Base) {
+ return UnknownVal();
+}
+
Store BasicStoreManager::SetRVal(Store store, LVal LV, RVal V) {
switch (LV.getSubKind()) {
case lval::MemRegionKind: {