mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-17 06:33:21 +00:00
Handle printing of intervals that are not assign to any physical
register yet (2nd try). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10896 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a6d8c3f845
commit
a12c7bb06f
@ -173,7 +173,7 @@ namespace {
|
|||||||
Virt2PhysMap::const_iterator it = v2pMap_.find(reg);
|
Virt2PhysMap::const_iterator it = v2pMap_.find(reg);
|
||||||
reg = (it == v2pMap_.end() ? 0 : it->second);
|
reg = (it == v2pMap_.end() ? 0 : it->second);
|
||||||
}
|
}
|
||||||
std::cerr << mri_->getName((*i)->reg) << '\n';
|
std::cerr << mri_->getName(reg) << '\n';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user