[llvm-commits] [llvm] r163875 - /llvm/trunk/include/llvm/Target/TargetSchedule.td

Andrew Trick atrick at apple.com
Thu Sep 13 23:18:50 PDT 2012


Author: atrick
Date: Fri Sep 14 01:18:50 2012
New Revision: 163875

URL: http://llvm.org/viewvc/llvm-project?rev=163875&view=rev
Log:
comment

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

Modified: llvm/trunk/include/llvm/Target/TargetSchedule.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Target/TargetSchedule.td?rev=163875&r1=163874&r2=163875&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Target/TargetSchedule.td (original)
+++ llvm/trunk/include/llvm/Target/TargetSchedule.td Fri Sep 14 01:18:50 2012
@@ -22,7 +22,7 @@
 // Default values for basic properties are defined in MCSchedModel. "-1"
 // indicates that the property is not overriden by the target description.
 class SchedMachineModel {
-  int IssueWidth = -1; // Max instructions that may be scheduled per cycle.
+  int IssueWidth = -1; // Max micro-ops that may be scheduled per cycle.
   int MinLatency = -1; // Determines which instrucions are allowed in a group.
                        // (-1) inorder (0) ooo, (1): inorder +var latencies.
   int LoadLatency = -1; // Cycles for loads to access the cache.





More information about the llvm-commits mailing list