From 2682bb6df2e84c927f6ea499b35c22927261c2b6 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Fri, 5 Oct 2007 14:11:58 +0000 Subject: [PATCH] Fix a typo in a comment. llvm-svn: 42635 --- llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp b/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp index 7760339662d3..c1a85096157d 100644 --- a/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp @@ -1301,7 +1301,7 @@ void BURegReductionPriorityQueue::AddPseudoTwoAddrDeps() { I != E; ++I) { if (I->isCtrl) continue; SUnit *SuccSU = I->Dep; - // Don't constraint nodes with implicit defs. It can create cycles + // Don't constrain nodes with implicit defs. It can create cycles // plus it may increase register pressures. if (SuccSU == SU || SuccSU->hasPhysRegDefs) continue;