From: Ted Kremenek Date: Wed, 25 Nov 2009 23:30:34 +0000 (+0000) Subject: Remove recently added FIXME. The appropriate FIXME is already in MemRegionManager... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a44a59092cab406c844976be9cd19c630f7f0feb;p=clang Remove recently added FIXME. The appropriate FIXME is already in MemRegionManager::getVarRegion(). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@89897 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/RegionStore.cpp b/lib/Analysis/RegionStore.cpp index 0afe0e8edd..16a4690f95 100644 --- a/lib/Analysis/RegionStore.cpp +++ b/lib/Analysis/RegionStore.cpp @@ -590,8 +590,6 @@ SVal RegionStoreManager::getLValueString(const StringLiteral* S) { /// VarRegion, and the lvalue of the variable is the lvalue of that region. SVal RegionStoreManager::getLValueVar(const VarDecl *VD, const LocationContext *LC) { - // FIXME: The LocationContext should be adjusted if 'VD' is not from - // the current stack frame, but is a global, etc. return loc::MemRegionVal(MRMgr.getVarRegion(VD, LC)); }