diff options
author | Andrew Trick <atrick@apple.com> | 2012-09-18 04:03:34 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2012-09-18 04:03:34 +0000 |
commit | 6e6d597b1ceb7b2382a0099658a6433af2555613 (patch) | |
tree | 8d183c251d0519b0f28b771ac504e418b7d85209 /llvm/lib/MC/MCSubtargetInfo.cpp | |
parent | ea28dbdf9353f6507daf7626793b8f2b585156ef (diff) | |
download | bcm5719-llvm-6e6d597b1ceb7b2382a0099658a6433af2555613.tar.gz bcm5719-llvm-6e6d597b1ceb7b2382a0099658a6433af2555613.zip |
TargetSchedModel API. Implement latency lookup, disabled.
llvm-svn: 164098
Diffstat (limited to 'llvm/lib/MC/MCSubtargetInfo.cpp')
-rw-r--r-- | llvm/lib/MC/MCSubtargetInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCSubtargetInfo.cpp b/llvm/lib/MC/MCSubtargetInfo.cpp index 34b7eeabbc8..ae2e8a1d6c9 100644 --- a/llvm/lib/MC/MCSubtargetInfo.cpp +++ b/llvm/lib/MC/MCSubtargetInfo.cpp @@ -113,5 +113,5 @@ MCSubtargetInfo::getInstrItineraryForCPU(StringRef CPU) const { /// Initialize an InstrItineraryData instance. void MCSubtargetInfo::initInstrItins(InstrItineraryData &InstrItins) const { InstrItins = - InstrItineraryData(0, Stages, OperandCycles, ForwardingPaths); + InstrItineraryData(CPUSchedModel, Stages, OperandCycles, ForwardingPaths); } |