From 9f65c39f806186e1bbe1c9e4b670d198c69a81c1 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Tue, 29 Jan 2008 12:43:50 +0000 Subject: [PATCH] Fix a typo in a comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46513 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp b/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp index 5d6b1a27ad5..48bc3cd115b 100644 --- a/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp +++ b/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp @@ -1386,7 +1386,7 @@ void BURegReductionPriorityQueue::AddPseudoTwoAddrDeps() { if (!SuccSU->Node || !SuccSU->Node->isTargetOpcode()) continue; // Don't constrain nodes with physical register defs if the - // predecessor can cloober them. + // predecessor can clobber them. if (SuccSU->hasPhysRegDefs) { if (canClobberPhysRegDefs(SuccSU, SU, TII, MRI)) continue;