Skip to content

Commit

Permalink
Fix typo and place comment close to its target
Browse files Browse the repository at this point in the history
Patch by Wei-Ren Chen.

Differential Revision: https://reviews.llvm.org/D32594

llvm-svn: 301546
  • Loading branch information
Krzysztof Parzyszek committed Apr 27, 2017
1 parent 678512d commit 14f10e0
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions llvm/lib/Target/Hexagon/HexagonMachineScheduler.h
Expand Up @@ -32,14 +32,10 @@
using namespace llvm;

namespace llvm {
//===----------------------------------------------------------------------===//
// ConvergingVLIWScheduler - Implementation of the standard
// MachineSchedStrategy.
//===----------------------------------------------------------------------===//

class VLIWResourceModel {
/// ResourcesModel - Represents VLIW state.
/// Not limited to VLIW targets per say, but assumes
/// Not limited to VLIW targets per se, but assumes
/// definition of DFA by a target.
DFAPacketizer *ResourcesModel;

Expand Down Expand Up @@ -110,6 +106,11 @@ class VLIWMachineScheduler : public ScheduleDAGMILive {
void schedule() override;
};

//===----------------------------------------------------------------------===//
// ConvergingVLIWScheduler - Implementation of the standard
// MachineSchedStrategy.
//===----------------------------------------------------------------------===//

/// ConvergingVLIWScheduler shrinks the unscheduled zone using heuristics
/// to balance the schedule.
class ConvergingVLIWScheduler : public MachineSchedStrategy {
Expand Down

0 comments on commit 14f10e0

Please sign in to comment.