[llvm-commits] CVS: llvm/lib/Target/TargetSchedule.td
Jim Laskey
jlaskey at apple.com
Fri Oct 21 12:02:57 PDT 2005
Changes in directory llvm/lib/Target:
TargetSchedule.td updated: 1.2 -> 1.3
---
Log message:
Plugin new subtarget backend into the build.
---
Diffs of the changes: (+2 -2)
TargetSchedule.td | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/lib/Target/TargetSchedule.td
diff -u llvm/lib/Target/TargetSchedule.td:1.2 llvm/lib/Target/TargetSchedule.td:1.3
--- llvm/lib/Target/TargetSchedule.td:1.2 Wed Oct 19 08:34:52 2005
+++ llvm/lib/Target/TargetSchedule.td Fri Oct 21 14:02:44 2005
@@ -28,8 +28,8 @@
// need to complete the stage. Units represent the choice of functional units
// that can be used to complete the stage. Eg. IntUnit1, IntUnit2.
//
-class InstrStage<int latency, list<FuncUnit> units> {
- int Latency = latency; // length of stage in machine cycles
+class InstrStage<int cycles, list<FuncUnit> units> {
+ int Cycles = cycles; // length of stage in machine cycles
list<FuncUnit> Units = units; // choice of functional units
}
More information about the llvm-commits
mailing list