Skip to content

Commit

Permalink
[SystemZ] Commenting (NFC)
Browse files Browse the repository at this point in the history
Some minor commenting in scheduler files.

Review: Ulrich Weigand

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@332599 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
JonPsson committed May 17, 2018
1 parent 8f090f6 commit c42065a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
8 changes: 5 additions & 3 deletions lib/Target/SystemZ/SystemZScheduleZ13.td
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
// This file defines the machine model for Z13 to support instruction
// scheduling and other instruction cost heuristics.
//
// Pseudos expanded right after isel do not need to be modelled here.
//
//===----------------------------------------------------------------------===//

def Z13Model : SchedMachineModel {
Expand All @@ -28,9 +30,9 @@ def Z13Model : SchedMachineModel {

let SchedModel = Z13Model in {

// These definitions could be put in a subtarget common include file,
// but it seems the include system in Tablegen currently rejects
// multiple includes of same file.
// These definitions need the SchedModel value. They could be put in a
// subtarget common include file, but it seems the include system in Tablegen
// currently (2016) rejects multiple includes of same file.
def : WriteRes<GroupAlone, []> {
let NumMicroOps = 0;
let BeginGroup = 1;
Expand Down
8 changes: 5 additions & 3 deletions lib/Target/SystemZ/SystemZScheduleZ14.td
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
// This file defines the machine model for Z14 to support instruction
// scheduling and other instruction cost heuristics.
//
// Pseudos expanded right after isel do not need to be modelled here.
//
//===----------------------------------------------------------------------===//

def Z14Model : SchedMachineModel {
Expand All @@ -28,9 +30,9 @@ def Z14Model : SchedMachineModel {

let SchedModel = Z14Model in {

// These definitions could be put in a subtarget common include file,
// but it seems the include system in Tablegen currently rejects
// multiple includes of same file.
// These definitions need the SchedModel value. They could be put in a
// subtarget common include file, but it seems the include system in Tablegen
// currently (2016) rejects multiple includes of same file.
def : WriteRes<GroupAlone, []> {
let NumMicroOps = 0;
let BeginGroup = 1;
Expand Down

0 comments on commit c42065a

Please sign in to comment.