зеркало из https://github.com/microsoft/clang-1.git
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:
Родитель
aa81e1658d
Коммит
02b1df62ff
|
@ -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);
|
||||
|
|
Загрузка…
Ссылка в новой задаче