diff options
author | Dan Gohman <gohman@apple.com> | 2008-01-29 12:43:50 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-01-29 12:43:50 +0000 |
commit | 9f65c39f806186e1bbe1c9e4b670d198c69a81c1 (patch) | |
tree | 7940cc8ec9d21f2ebe3884626c99372b05e41a63 /lib | |
parent | 0e9dfb0900fefc10d006b6b804597800e267a86b (diff) | |
download | external_llvm-9f65c39f806186e1bbe1c9e4b670d198c69a81c1.zip external_llvm-9f65c39f806186e1bbe1c9e4b670d198c69a81c1.tar.gz external_llvm-9f65c39f806186e1bbe1c9e4b670d198c69a81c1.tar.bz2 |
Fix a typo in a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46513 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp b/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp index 5d6b1a2..48bc3cd 100644 --- a/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp +++ b/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp @@ -1386,7 +1386,7 @@ void BURegReductionPriorityQueue<SF>::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; |