mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-04 08:41:49 +00:00
Don't read PreRegAlloc before it is initialized.
llvm-svn: 150286
This commit is contained in:
parent
39dbf3f09e
commit
cdb77e2491
@ -311,12 +311,6 @@ static bool LoopIsOuterMostWithPredecessor(MachineLoop *CurLoop) {
|
||||
}
|
||||
|
||||
bool MachineLICM::runOnMachineFunction(MachineFunction &MF) {
|
||||
if (PreRegAlloc)
|
||||
DEBUG(dbgs() << "******** Pre-regalloc Machine LICM: ");
|
||||
else
|
||||
DEBUG(dbgs() << "******** Post-regalloc Machine LICM: ");
|
||||
DEBUG(dbgs() << MF.getFunction()->getName() << " ********\n");
|
||||
|
||||
Changed = FirstInLoop = false;
|
||||
TM = &MF.getTarget();
|
||||
TII = TM->getInstrInfo();
|
||||
@ -328,6 +322,12 @@ bool MachineLICM::runOnMachineFunction(MachineFunction &MF) {
|
||||
|
||||
PreRegAlloc = MRI->isSSA();
|
||||
|
||||
if (PreRegAlloc)
|
||||
DEBUG(dbgs() << "******** Pre-regalloc Machine LICM: ");
|
||||
else
|
||||
DEBUG(dbgs() << "******** Post-regalloc Machine LICM: ");
|
||||
DEBUG(dbgs() << MF.getFunction()->getName() << " ********\n");
|
||||
|
||||
if (PreRegAlloc) {
|
||||
// Estimate register pressure during pre-regalloc pass.
|
||||
unsigned NumRC = TRI->getNumRegClasses();
|
||||
|
Loading…
x
Reference in New Issue
Block a user