diff options
author | Dan Gohman <gohman@apple.com> | 2007-04-26 19:40:56 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2007-04-26 19:40:56 +0000 |
commit | e131e3ac0220c692fb89aab7efcb1ad0ef61156e (patch) | |
tree | 1d5931f0b9564a2e992428c097ff9b7986929b3e /llvm/lib/CodeGen | |
parent | a2f93b554dfe29f721a2eb61e4c52754a92e7f37 (diff) | |
download | bcm5719-llvm-e131e3ac0220c692fb89aab7efcb1ad0ef61156e.tar.gz bcm5719-llvm-e131e3ac0220c692fb89aab7efcb1ad0ef61156e.zip |
Fix a typo in a comment.
llvm-svn: 36485
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp b/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp index e0054681507..08292bb6e4d 100644 --- a/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp @@ -634,7 +634,7 @@ bool bu_ls_rr_sort::operator()(const SUnit *left, const SUnit *right) const { if (LPriority > RPriority) return true; else if (LPriority == RPriority) { - // Try schedule def + use closer whne Sethi-Ullman numbers are the same. + // Try schedule def + use closer when Sethi-Ullman numbers are the same. // e.g. // t1 = op t2, c1 // t3 = op t4, c2 |