Changes in directory llvm/lib/CodeGen/SelectionDAG:
ScheduleDAG.cpp updated: 1.110 -> 1.111 ScheduleDAGRRList.cpp updated: 1.21 -> 1.22 --- Log message: Match TargetInstrInfo changes. --- Diffs of the changes: (+5 -10) ScheduleDAG.cpp | 3 +-- ScheduleDAGRRList.cpp | 12 ++++-------- 2 files changed, 5 insertions(+), 10 deletions(-) Index: llvm/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp diff -u llvm/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp:1.110 llvm/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp:1.111 --- llvm/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp:1.110 Mon Nov 27 17:36:08 2006 +++ llvm/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp Fri Dec 1 15:48:44 2006 @@ -127,8 +127,7 @@ if (MainNode->isTargetOpcode()) { unsigned Opc = MainNode->getTargetOpcode(); for (unsigned i = 0, ee = TII->getNumOperands(Opc); i != ee; ++i) { - if (TII->getOperandConstraint(Opc, i, - TargetInstrInfo::TIED_TO) != -1) { + if (TII->getOperandConstraint(Opc, i, TOI::TIED_TO) != -1) { SU->isTwoAddress = true; break; } Index: llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp diff -u llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp:1.21 llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp:1.22 --- llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp:1.21 Mon Nov 6 15:33:46 2006 +++ llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp Fri Dec 1 15:48:44 2006 @@ -128,8 +128,7 @@ unsigned NumRes = CountResults(SU->Node); unsigned NumOps = CountOperands(SU->Node); for (unsigned j = 0; j != NumOps; ++j) { - if (TII->getOperandConstraint(Opc, j+NumRes, - TargetInstrInfo::TIED_TO) == -1) + if (TII->getOperandConstraint(Opc, j+NumRes, TOI::TIED_TO) == -1) continue; SDNode *OpN = SU->Node->getOperand(j).Val; @@ -498,8 +497,7 @@ unsigned NumRes = ScheduleDAG::CountResults(SU1->Node); unsigned NumOps = ScheduleDAG::CountOperands(SU1->Node); for (unsigned i = 0; i != NumOps; ++i) { - if (TII->getOperandConstraint(Opc, i+NumRes, - TargetInstrInfo::TIED_TO) == -1) + if (TII->getOperandConstraint(Opc, i+NumRes, TOI::TIED_TO) == -1) continue; if (SU1->Node->getOperand(i).isOperand(SU2->Node)) return true; @@ -667,8 +665,7 @@ unsigned NumRes = ScheduleDAG::CountResults(SU->Node); unsigned NumOps = ScheduleDAG::CountOperands(SU->Node); for (unsigned i = 0; i != NumOps; ++i) { - if (TII->getOperandConstraint(Opc, i+NumRes, - TargetInstrInfo::TIED_TO) != -1) { + if (TII->getOperandConstraint(Opc, i+NumRes, TOI::TIED_TO) != -1) { SDNode *DU = SU->Node->getOperand(i).Val; if (Op == (*SUnitMap)[DU]) return true; @@ -698,8 +695,7 @@ unsigned NumRes = ScheduleDAG::CountResults(Node); unsigned NumOps = ScheduleDAG::CountOperands(Node); for (unsigned j = 0; j != NumOps; ++j) { - if (TII->getOperandConstraint(Opc, j+NumRes, - TargetInstrInfo::TIED_TO) != -1) { + if (TII->getOperandConstraint(Opc, j+NumRes, TOI::TIED_TO) != -1) { SDNode *DU = SU->Node->getOperand(j).Val; SUnit *DUSU = (*SUnitMap)[DU]; if (!DUSU) continue; _______________________________________________ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits