mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-02 07:32:52 +00:00
RegionInfo: Fix trivial error that slipped in last minute.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116400 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
592316c419
commit
c502101000
@ -444,7 +444,7 @@ void Region::dump() const {
|
||||
void Region::clearNodeCache() {
|
||||
// Free the cached nodes.
|
||||
for (BBNodeMapT::iterator I = BBNodeMap.begin(),
|
||||
IE = BBNodeMap.end(); I != IE; ++IE)
|
||||
IE = BBNodeMap.end(); I != IE; ++I)
|
||||
delete I->second;
|
||||
|
||||
BBNodeMap.clear();
|
||||
|
Loading…
Reference in New Issue
Block a user