Provide the correct vector size for referenced variables.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90267 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ted Kremenek 2009-12-01 22:12:34 +00:00
Родитель aa81e1658d
Коммит 02b1df62ff
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -558,7 +558,7 @@ void BlockDataRegion::LazyInitializeReferencedVars() {
typedef BumpVector<const MemRegion*> VarVec;
VarVec *BV = (VarVec*) A.Allocate<VarVec>();
new (BV) VarVec(BC, (E - I) / sizeof(*I));
new (BV) VarVec(BC, E - I);
for ( ; I != E; ++I)
BV->push_back(MemMgr.getVarRegion(*I, LC), BC);