diff options
Diffstat (limited to 'llvm/tools/llvm-mca/SummaryView.h')
-rw-r--r-- | llvm/tools/llvm-mca/SummaryView.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-mca/SummaryView.h b/llvm/tools/llvm-mca/SummaryView.h index 083e6b065aa..9c543519469 100644 --- a/llvm/tools/llvm-mca/SummaryView.h +++ b/llvm/tools/llvm-mca/SummaryView.h @@ -45,7 +45,7 @@ public: SummaryView(const SourceMgr &S, unsigned Width) : Source(S), DispatchWidth(Width), TotalCycles(0) {} - void onCycleEnd(unsigned /* unused */) override { ++TotalCycles; } + void onCycleEnd() override { ++TotalCycles; } void printView(llvm::raw_ostream &OS) const override; }; |