[llvm-commits] [llvm] r60500 - /llvm/trunk/lib/CodeGen/PostRASchedulerList.cpp
Dan Gohman
gohman at apple.com
Wed Dec 3 11:38:38 PST 2008
Author: djg
Date: Wed Dec 3 13:38:38 2008
New Revision: 60500
URL: http://llvm.org/viewvc/llvm-project?rev=60500&view=rev
Log:
Fix an inconsistency in a comment.
Modified:
llvm/trunk/lib/CodeGen/PostRASchedulerList.cpp
Modified: llvm/trunk/lib/CodeGen/PostRASchedulerList.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/PostRASchedulerList.cpp?rev=60500&r1=60499&r2=60500&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/PostRASchedulerList.cpp (original)
+++ llvm/trunk/lib/CodeGen/PostRASchedulerList.cpp Wed Dec 3 13:38:38 2008
@@ -223,10 +223,9 @@
}
// 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] = {};
More information about the llvm-commits
mailing list