diff options
| author | Andrew Trick <atrick@apple.com> | 2012-06-05 03:44:40 +0000 | 
|---|---|---|
| committer | Andrew Trick <atrick@apple.com> | 2012-06-05 03:44:40 +0000 | 
| commit | 73d7736b17fcefe5448ffea7641ff10e415ef83e (patch) | |
| tree | d4eec2c9c14200dafa68b1d84459c8f7cad882e1 /llvm/lib/Target/MBlaze/MBlazeSubtarget.cpp | |
| parent | a88d46e81886c2a3d9511fdb590defc1ba1131d9 (diff) | |
| download | bcm5719-llvm-73d7736b17fcefe5448ffea7641ff10e415ef83e.tar.gz bcm5719-llvm-73d7736b17fcefe5448ffea7641ff10e415ef83e.zip | |
misched: Added MultiIssueItineraries.
This allows a subtarget to explicitly specify the issue width and
other properties without providing pipeline stage details for every
instruction.
llvm-svn: 157979
Diffstat (limited to 'llvm/lib/Target/MBlaze/MBlazeSubtarget.cpp')
| -rw-r--r-- | llvm/lib/Target/MBlaze/MBlazeSubtarget.cpp | 7 | 
1 files changed, 0 insertions, 7 deletions
| diff --git a/llvm/lib/Target/MBlaze/MBlazeSubtarget.cpp b/llvm/lib/Target/MBlaze/MBlazeSubtarget.cpp index d12d14245ea..dc2ad29be2a 100644 --- a/llvm/lib/Target/MBlaze/MBlazeSubtarget.cpp +++ b/llvm/lib/Target/MBlaze/MBlazeSubtarget.cpp @@ -43,13 +43,6 @@ MBlazeSubtarget::MBlazeSubtarget(const std::string &TT,    // Initialize scheduling itinerary for the specified CPU.    InstrItins = getInstrItineraryForCPU(CPUName); - -  // Compute the issue width of the MBlaze itineraries -  computeIssueWidth(); -} - -void MBlazeSubtarget::computeIssueWidth() { -  InstrItins.IssueWidth = 1;  }  bool MBlazeSubtarget:: | 

