mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-02 09:33:59 +00:00
Improve compatibility with acc
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19549 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9a791eaf8f
commit
8f1d6402ba
@ -438,8 +438,8 @@ void LocalSpiller::RewriteMBB(MachineBasicBlock &MBB, const VirtRegMap &VRM) {
|
||||
// If we have folded references to memory operands, make sure we clear all
|
||||
// physical registers that may contain the value of the spilled virtual
|
||||
// register
|
||||
VirtRegMap::MI2VirtMapTy::const_iterator I, E;
|
||||
for (tie(I, E) = VRM.getFoldedVirts(&MI); I != E; ++I) {
|
||||
VirtRegMap::MI2VirtMapTy::const_iterator I, End;
|
||||
for (tie(I, End) = VRM.getFoldedVirts(&MI); I != End; ++I) {
|
||||
DEBUG(std::cerr << "Folded vreg: " << I->second.first << " MR: "
|
||||
<< I->second.second);
|
||||
unsigned VirtReg = I->second.first;
|
||||
|
Loading…
x
Reference in New Issue
Block a user