Disambiguated variable name to comply with VC++'s archaic variable scoping rules.

llvm-svn: 43369
This commit is contained in:
Hartmut Kaiser 2007-10-25 22:57:48 +00:00
parent 3a0cda1cf7
commit 7e16ce5270
1 changed files with 5 additions and 5 deletions

View File

@ -122,13 +122,13 @@ void Deserializer::ReadPtr(void*& PtrRef) {
void Deserializer::BackpatchPointers() {
for (MapTy::iterator I=BPatchMap.begin(),E=BPatchMap.end(); I!=E; ++I) {
BPatchEntry& E = I->second;
assert (E.Ptr && "No pointer found for backpatch.");
BPatchEntry& Entry = I->second;
assert (Entry.Ptr && "No pointer found for backpatch.");
for (BPatchNode* N = E.Head; N != NULL; N = N->Next)
N->PtrRef = E.Ptr;
for (BPatchNode* N = Entry.Head; N != NULL; N = N->Next)
N->PtrRef = Entry.Ptr;
E.Head = NULL;
Entry.Head = NULL;
}
Allocator.Reset();