forked from OSchip/llvm-project
[Misched]: Remove double call getMicroOpFactor.NFC.
Reviewed by: @MatzeB Differential Revision: https://reviews.llvm.org/D38176 llvm-svn: 314296
This commit is contained in:
parent
836c50cc2f
commit
1a77bcc0d2
|
@ -2363,7 +2363,7 @@ LLVM_DUMP_METHOD void SchedBoundary::dumpScheduledState() const {
|
|||
ResCount = getResourceCount(ZoneCritResIdx);
|
||||
} else {
|
||||
ResFactor = SchedModel->getMicroOpFactor();
|
||||
ResCount = RetiredMOps * SchedModel->getMicroOpFactor();
|
||||
ResCount = RetiredMOps * ResFactor;
|
||||
}
|
||||
unsigned LFactor = SchedModel->getLatencyFactor();
|
||||
dbgs() << Available.getName() << " @" << CurrCycle << "c\n"
|
||||
|
|
Loading…
Reference in New Issue