]> granicus.if.org Git - clang/commitdiff
Add array index assertion: BasicStore should not expect any fancy
authorTed Kremenek <kremenek@apple.com>
Mon, 4 May 2009 15:25:46 +0000 (15:25 +0000)
committerTed Kremenek <kremenek@apple.com>
Mon, 4 May 2009 15:25:46 +0000 (15:25 +0000)
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

index 598191f578194827b596af5d86e4cea3fb0435bf..95bb6f1a054432ad4405cc730a692579a255b02e 100644 (file)
@@ -212,11 +212,14 @@ SVal BasicStoreManager::getLValueElement(const GRState* St,
     case loc::MemRegionKind: {
       const MemRegion *R = cast<loc::MemRegionVal>(BaseL).getRegion();
       
-      if (isa<ElementRegion>(R)) {
+      if (const ElementRegion *ER = dyn_cast<ElementRegion>(R)) {
         // int x;
         // char* y = (char*) &x;
         // 'y' => ElementRegion(0, VarRegion('x'))
         // y[0] = 'a';
+        assert(ER->getIndex().isUnknown() ||
+               cast<nonloc::ConcreteInt>(ER->getIndex()).getValue() == 0);
+        ER = ER; // silence 'unused' warning in release modes.
         return Base;
       }