From d36adece50c9dab772a486ad432149a261ea41a0 Mon Sep 17 00:00:00 2001 From: Andrew Trick Date: Tue, 5 Jun 2012 03:44:26 +0000 Subject: misched: comments from code review. llvm-svn: 157975 --- llvm/lib/CodeGen/MachineScheduler.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'llvm/lib/CodeGen/MachineScheduler.cpp') diff --git a/llvm/lib/CodeGen/MachineScheduler.cpp b/llvm/lib/CodeGen/MachineScheduler.cpp index b8eefae..c318d84 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; -- cgit v1.1