Add FIXME.

llvm-svn: 89892
This commit is contained in:
Ted Kremenek 2009-11-25 22:41:34 +00:00
parent f73b282bf0
commit a3d6e62003
1 changed files with 2 additions and 0 deletions

View File

@ -590,6 +590,8 @@ 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));
}