diff options
author | Dan Gohman <gohman@apple.com> | 2008-12-03 19:38:38 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-12-03 19:38:38 +0000 |
commit | 0c91a5f56c6183e5e28bb9dfe78e48248050fcc4 (patch) | |
tree | 26da7c98616ab1c84e08bd221591b9a6fab03f56 | |
parent | 1339e72d971e7604a54d2fcaf6eae14254b8c45b (diff) | |
download | bcm5719-llvm-0c91a5f56c6183e5e28bb9dfe78e48248050fcc4.tar.gz bcm5719-llvm-0c91a5f56c6183e5e28bb9dfe78e48248050fcc4.zip |
Fix an inconsistency in a comment.
llvm-svn: 60500
-rw-r--r-- | llvm/lib/CodeGen/PostRASchedulerList.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/PostRASchedulerList.cpp b/llvm/lib/CodeGen/PostRASchedulerList.cpp index f3aef575f07..870795de44b 100644 --- a/llvm/lib/CodeGen/PostRASchedulerList.cpp +++ b/llvm/lib/CodeGen/PostRASchedulerList.cpp @@ -223,10 +223,9 @@ bool SchedulePostRATDList::BreakAntiDependencies() { } // For live regs that are only used in one register class in a live range, - // the register class. If the register is not live or is referenced in - // multiple register classes, the corresponding value is null. If the - // register is used in multiple register classes, the corresponding value - // is -1 casted to a pointer. + // the register class. If the register is not live, the corresponding value + // is null. If the register is live but used in multiple register classes, + // the corresponding value is -1 casted to a pointer. const TargetRegisterClass * Classes[TargetRegisterInfo::FirstVirtualRegister] = {}; |