From c2eeb72a7301b0409073311ccbf5da77dccfcc37 Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Mon, 4 May 2009 15:25:46 +0000 Subject: [PATCH] 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 --- lib/Analysis/BasicStore.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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; } -- 2.40.0