[llvm-commits] [llvm] r157975 - /llvm/trunk/lib/CodeGen/MachineScheduler.cpp

Andrew Trick atrick at apple.com
Mon Jun 4 20:44:26 PDT 2012


Author: atrick
Date: Mon Jun  4 22:44:26 2012
New Revision: 157975

URL: http://llvm.org/viewvc/llvm-project?rev=157975&view=rev
Log:
misched: comments from code review.

Modified:
    llvm/trunk/lib/CodeGen/MachineScheduler.cpp

Modified: llvm/trunk/lib/CodeGen/MachineScheduler.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/MachineScheduler.cpp?rev=157975&r1=157974&r2=157975&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/MachineScheduler.cpp (original)
+++ llvm/trunk/lib/CodeGen/MachineScheduler.cpp Mon Jun  4 22:44:26 2012
@@ -701,9 +701,9 @@
 //===----------------------------------------------------------------------===//
 
 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;





More information about the llvm-commits mailing list