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 | 76e9e838a143a12fdf119ecd01919936a437b5a2 (patch) | |
tree | 7a80546e0a7e783952e5b90d942512f856220887 | |
parent | afb32f7fb482d62532d575ea7b1ee8ab3919575c (diff) | |
download | external_llvm-76e9e838a143a12fdf119ecd01919936a437b5a2.zip external_llvm-76e9e838a143a12fdf119ecd01919936a437b5a2.tar.gz external_llvm-76e9e838a143a12fdf119ecd01919936a437b5a2.tar.bz2 |
misched: comments from code review.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157975 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/MachineScheduler.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/CodeGen/MachineScheduler.cpp b/lib/CodeGen/MachineScheduler.cpp index b8eefae..c318d84 100644 --- a/lib/CodeGen/MachineScheduler.cpp +++ b/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; |