OSDN Git Service

Revert 47177, which was incorrect.
authorDan Gohman <gohman@apple.com>
Sat, 16 Feb 2008 00:25:40 +0000 (00:25 +0000)
committerDan Gohman <gohman@apple.com>
Sat, 16 Feb 2008 00:25:40 +0000 (00:25 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47196 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp

index e001390..2cda597 100644 (file)
@@ -431,7 +431,7 @@ SUnit *ScheduleDAGRRList::CopyAndMoveSuccessors(SUnit *SU) {
     SUnit *NewSU = NewSUnit(N);
     SUnitMap[N].push_back(NewSU);
     const TargetInstrDesc &TID = TII->get(N->getTargetOpcode());
-    for (unsigned i = TID.getNumDefs(); i != TID.getNumOperands(); ++i) {
+    for (unsigned i = 0; i != TID.getNumOperands(); ++i) {
       if (TID.getOperandConstraint(i, TOI::TIED_TO) != -1) {
         NewSU->isTwoAddress = true;
         break;