From: Ted Kremenek Date: Mon, 4 May 2009 15:25:46 +0000 (+0000) Subject: Add array index assertion: BasicStore should not expect any fancy X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c2eeb72a7301b0409073311ccbf5da77dccfcc37;p=clang Add array index assertion: BasicStore should not expect any fancy ElementRegions that have non-zero array indices. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70867 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/BasicStore.cpp b/lib/Analysis/BasicStore.cpp index 598191f578..95bb6f1a05 100644 --- a/lib/Analysis/BasicStore.cpp +++ b/lib/Analysis/BasicStore.cpp @@ -212,11 +212,14 @@ SVal BasicStoreManager::getLValueElement(const GRState* St, case loc::MemRegionKind: { const MemRegion *R = cast(BaseL).getRegion(); - if (isa(R)) { + if (const ElementRegion *ER = dyn_cast(R)) { // int x; // char* y = (char*) &x; // 'y' => ElementRegion(0, VarRegion('x')) // y[0] = 'a'; + assert(ER->getIndex().isUnknown() || + cast(ER->getIndex()).getValue() == 0); + ER = ER; // silence 'unused' warning in release modes. return Base; }