From c7fa16f782b0ef1d51bff0f88bffbbe37d03adf5 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Wed, 11 Feb 2009 21:32:08 +0000 Subject: [PATCH] Fix a comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@64328 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp b/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp index 0b7f99f42ad..a0652a72c94 100644 --- a/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp +++ b/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp @@ -1252,8 +1252,8 @@ void RegReductionPriorityQueue::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) -- 2.34.1