aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2007-10-05 14:11:58 +0000
committerDan Gohman <gohman@apple.com>2007-10-05 14:11:58 +0000
commit2eb4ebd953314d7c7f96cfb5897d8ded94f6c9d4 (patch)
tree652a45303e7e6b2b1c529abbdcacb1e4bd753df6
parentccd60799cdc9b75ddc971c02f0a1bf3bd7f48aba (diff)
downloadexternal_llvm-2eb4ebd953314d7c7f96cfb5897d8ded94f6c9d4.zip
external_llvm-2eb4ebd953314d7c7f96cfb5897d8ded94f6c9d4.tar.gz
external_llvm-2eb4ebd953314d7c7f96cfb5897d8ded94f6c9d4.tar.bz2
Fix a typo in a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42635 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp b/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
index 7760339..c1a8509 100644
--- a/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
+++ b/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
@@ -1301,7 +1301,7 @@ void BURegReductionPriorityQueue<SF>::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;