When doing remat, don't consider uses of non-allocatable physregs. Patch
[oota-llvm.git] / lib / CodeGen / LiveIntervalAnalysis.cpp
index d6931df896dc4c05d63c4514114ee9e878175f13..21bb5dc0127d0255abfb4a70b7101d383e706437 100644 (file)
@@ -947,6 +947,10 @@ unsigned LiveIntervals::getReMatImplicitUse(const LiveInterval &li,
     unsigned Reg = MO.getReg();
     if (Reg == 0 || Reg == li.reg)
       continue;
+    
+    if (TargetRegisterInfo::isPhysicalRegister(Reg) &&
+        !allocatableRegs_[Reg])
+      continue;
     // FIXME: For now, only remat MI with at most one register operand.
     assert(!RegOp &&
            "Can't rematerialize instruction with multiple register operand!");