diff options
author | Andrew Trick <atrick@apple.com> | 2012-06-05 03:44:26 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2012-06-05 03:44:26 +0000 |
commit | d36adece50c9dab772a486ad432149a261ea41a0 (patch) | |
tree | dff62b41c30e1745288ee238e7ab92bf31ee608a /llvm/lib | |
parent | 345528944ca1d11fb919eee49fb42812ac522af0 (diff) | |
download | bcm5719-llvm-d36adece50c9dab772a486ad432149a261ea41a0.tar.gz bcm5719-llvm-d36adece50c9dab772a486ad432149a261ea41a0.zip |
misched: comments from code review.
llvm-svn: 157975
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/CodeGen/MachineScheduler.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/MachineScheduler.cpp b/llvm/lib/CodeGen/MachineScheduler.cpp index b8eefaee379..c318d846171 100644 --- a/llvm/lib/CodeGen/MachineScheduler.cpp +++ b/llvm/lib/CodeGen/MachineScheduler.cpp @@ -701,9 +701,9 @@ void ScheduleDAGMI::placeDebugValues() { //===----------------------------------------------------------------------===// namespace { -/// ReadyQ encapsulates vector of "ready" SUnits with basic convenience methods -/// for pushing and removing nodes. ReadyQ's are uniquely identified by an -/// ID. SUnit::NodeQueueId us a mask of the ReadyQs that the SUnit is in. +/// ReadyQueue encapsulates vector of "ready" SUnits with basic convenience +/// methods for pushing and removing nodes. ReadyQueue's are uniquely identified +/// by an ID. SUnit::NodeQueueId is a mask of the ReadyQueues the SUnit is in. class ReadyQueue { unsigned ID; std::string Name; |