aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Target
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2012-06-05 03:44:29 +0000
committerAndrew Trick <atrick@apple.com>2012-06-05 03:44:29 +0000
commitd05b46115f5049b7b094d4049aa88f09f7d6b65a (patch)
tree35b2941580395ab98188cdce1a9fd5b7fafcc6e1 /include/llvm/Target
parent76e9e838a143a12fdf119ecd01919936a437b5a2 (diff)
downloadexternal_llvm-d05b46115f5049b7b094d4049aa88f09f7d6b65a.zip
external_llvm-d05b46115f5049b7b094d4049aa88f09f7d6b65a.tar.gz
external_llvm-d05b46115f5049b7b094d4049aa88f09f7d6b65a.tar.bz2
whitespace
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157976 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target')
-rw-r--r--include/llvm/Target/TargetSchedule.td9
1 files changed, 5 insertions, 4 deletions
diff --git a/include/llvm/Target/TargetSchedule.td b/include/llvm/Target/TargetSchedule.td
index 97ea82a..307fe2d 100644
--- a/include/llvm/Target/TargetSchedule.td
+++ b/include/llvm/Target/TargetSchedule.td
@@ -1,10 +1,10 @@
//===- TargetSchedule.td - Target Independent Scheduling ---*- tablegen -*-===//
-//
+//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
-//
+//
//===----------------------------------------------------------------------===//
//
// This file defines the target-independent scheduling interfaces which should
@@ -19,7 +19,7 @@
// all chip sets of the target. Each functional unit is treated as a resource
// during scheduling and has an affect instruction order based on availability
// during a time interval.
-//
+//
class FuncUnit;
//===----------------------------------------------------------------------===//
@@ -84,7 +84,7 @@ class InstrItinClass<int ops = 1> {
def NoItinerary : InstrItinClass;
//===----------------------------------------------------------------------===//
-// Instruction itinerary data - These values provide a runtime map of an
+// Instruction itinerary data - These values provide a runtime map of an
// instruction itinerary class (name) to its itinerary data.
//
// OperandCycles are optional "cycle counts". They specify the cycle after
@@ -119,6 +119,7 @@ class InstrItinData<InstrItinClass Class, list<InstrStage> stages,
//
class ProcessorItineraries<list<FuncUnit> fu, list<Bypass> bp,
list<InstrItinData> iid> {
+ int IssueWidth = 1;
list<FuncUnit> FU = fu;
list<Bypass> BP = bp;
list<InstrItinData> IID = iid;