mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-06 06:33:24 +00:00
Rewriter should definitly rewrite instructions inside bundles.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148464 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
46ada15d42
commit
3f9c251e40
@ -119,8 +119,8 @@ void VirtRegMap::rewrite(SlotIndexes *Indexes) {
|
||||
for (MachineFunction::iterator MBBI = MF->begin(), MBBE = MF->end();
|
||||
MBBI != MBBE; ++MBBI) {
|
||||
DEBUG(MBBI->print(dbgs(), Indexes));
|
||||
for (MachineBasicBlock::iterator MII = MBBI->begin(), MIE = MBBI->end();
|
||||
MII != MIE;) {
|
||||
for (MachineBasicBlock::instr_iterator
|
||||
MII = MBBI->instr_begin(), MIE = MBBI->instr_end(); MII != MIE;) {
|
||||
MachineInstr *MI = MII;
|
||||
++MII;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user