[llvm] r324894 - [NFC] Fix comment of class InstrStage
Krzysztof Parzyszek via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 12 07:02:49 PST 2018
Author: kparzysz
Date: Mon Feb 12 07:02:49 2018
New Revision: 324894
URL: http://llvm.org/viewvc/llvm-project?rev=324894&view=rev
Log:
[NFC] Fix comment of class InstrStage
Patch by Wei-Ren Chen.
Differential Revision: https://reviews.llvm.org/D42905
Modified:
llvm/trunk/include/llvm/Target/TargetItinerary.td
Modified: llvm/trunk/include/llvm/Target/TargetItinerary.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Target/TargetItinerary.td?rev=324894&r1=324893&r2=324894&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Target/TargetItinerary.td (original)
+++ llvm/trunk/include/llvm/Target/TargetItinerary.td Mon Feb 12 07:02:49 2018
@@ -44,9 +44,9 @@ def Reserved : ReservationKind<1>;
// the execution of an instruction. Cycles represents the number of
// discrete time slots needed to complete the stage. Units represent
// the choice of functional units that can be used to complete the
-// stage. Eg. IntUnit1, IntUnit2. NextCycles indicates how many
-// cycles should elapse from the start of this stage to the start of
-// the next stage in the itinerary. For example:
+// stage. Eg. IntUnit1, IntUnit2. TimeInc indicates how many cycles
+// should elapse from the start of this stage to the start of the next
+// stage in the itinerary. For example:
//
// A stage is specified in one of two ways:
//
More information about the llvm-commits
mailing list