[PATCH] D50333: [Tablegen] In TargetSchedule.td: Remove unused argument `pfmCounters` from ProcResourceUnits.

Phabricator via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 7 03:34:28 PDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rL339125: [Tablegen] In TargetSchedule.td: Remove unused argument `pfmCounters` from… (authored by adibiagio, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D50333?vs=159292&id=159479#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D50333

Files:
  llvm/trunk/include/llvm/Target/TargetSchedule.td


Index: llvm/trunk/include/llvm/Target/TargetSchedule.td
===================================================================
--- llvm/trunk/include/llvm/Target/TargetSchedule.td
+++ llvm/trunk/include/llvm/Target/TargetSchedule.td
@@ -182,8 +182,7 @@
 //
 // SchedModel ties these units to a processor for any stand-alone defs
 // of this class.
-class ProcResourceUnits<ProcResourceKind kind, int num,
-                        list<string> pfmCounters> {
+class ProcResourceUnits<ProcResourceKind kind, int num> {
   ProcResourceKind Kind = kind;
   int NumUnits = num;
   ProcResourceKind Super = ?;
@@ -198,8 +197,8 @@
 
 // Subtargets typically define processor resource kind and number of
 // units in one place.
-class ProcResource<int num, list<string> pfmCounters = []> : ProcResourceKind,
-  ProcResourceUnits<EponymousProcResourceKind, num, pfmCounters>;
+class ProcResource<int num> : ProcResourceKind,
+  ProcResourceUnits<EponymousProcResourceKind, num>;
 
 class ProcResGroup<list<ProcResource> resources> : ProcResourceKind {
   list<ProcResource> Resources = resources;


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D50333.159479.patch
Type: text/x-patch
Size: 1085 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180807/fd545870/attachment.bin>


More information about the llvm-commits mailing list