[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp

Evan Cheng evan.cheng at apple.com
Wed Nov 1 14:17:21 PST 2006



Changes in directory llvm/lib/CodeGen/SelectionDAG:

ScheduleDAGRRList.cpp updated: 1.15 -> 1.16
---
Log message:

CopyFromReg starts a live range so its use should not be considered a floater.

---
Diffs of the changes:  (+1 -1)

 ScheduleDAGRRList.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp:1.15 llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp:1.16
--- llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp:1.15	Sat Oct 14 03:34:06 2006
+++ llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp	Wed Nov  1 16:17:06 2006
@@ -555,7 +555,7 @@
         SUnit *PredSU = I->first;
         unsigned Opc = PredSU->Node->getOpcode();
         if (Opc != ISD::EntryToken && Opc != ISD::TokenFactor &&
-            Opc != ISD::CopyFromReg && Opc != ISD::CopyToReg)
+            Opc != ISD::CopyToReg)
           return false;
       }
       return true;






More information about the llvm-commits mailing list