diff options
author | Dan Gohman <gohman@apple.com> | 2009-02-11 21:32:08 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-02-11 21:32:08 +0000 |
commit | 45889d24fe33fc18c340fb6921636d4d82821b14 (patch) | |
tree | 9e6eb8ed91eafe5af55e3c8e540d7e6202b04d9e /llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp | |
parent | 6571ef3577f35eed62e5a71554a3c1f6dc2fa944 (diff) | |
download | bcm5719-llvm-45889d24fe33fc18c340fb6921636d4d82821b14.tar.gz bcm5719-llvm-45889d24fe33fc18c340fb6921636d4d82821b14.zip |
Fix a comment.
llvm-svn: 64328
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp b/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp index 0b7f99f42ad..a0652a72c94 100644 --- a/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp @@ -1252,8 +1252,8 @@ void RegReductionPriorityQueue<SF>::AddPseudoTwoAddrDeps() { if (canClobberPhysRegDefs(SuccSU, SU, TII, TRI)) continue; } - // Don't constraint extract_subreg / insert_subreg these may be - // coalesced away. We don't them close to their uses. + // Don't constrain extract_subreg / insert_subreg; these may be + // coalesced away. We want them close to their uses. unsigned SuccOpc = SuccSU->getNode()->getMachineOpcode(); if (SuccOpc == TargetInstrInfo::EXTRACT_SUBREG || SuccOpc == TargetInstrInfo::INSERT_SUBREG) |