summaryrefslogtreecommitdiffstats
path: root/llvm/tools/llvm-mca/SummaryView.h
diff options
context:
space:
mode:
authorAndrea Di Biagio <Andrea_DiBiagio@sn.scee.net>2018-04-12 10:49:40 +0000
committerAndrea Di Biagio <Andrea_DiBiagio@sn.scee.net>2018-04-12 10:49:40 +0000
commit3e64644de816736c15e9f2a5836dbea938451eb2 (patch)
tree9f2ffa7940213229aacab621554489b8ec2c2ac0 /llvm/tools/llvm-mca/SummaryView.h
parent8d2acfd8e88ab5cb32ef19f4c0cab759858d85d3 (diff)
downloadbcm5719-llvm-3e64644de816736c15e9f2a5836dbea938451eb2.tar.gz
bcm5719-llvm-3e64644de816736c15e9f2a5836dbea938451eb2.zip
[llvm-mca] Removed unused argument from cycleEvent. NFC
llvm-svn: 329895
Diffstat (limited to 'llvm/tools/llvm-mca/SummaryView.h')
-rw-r--r--llvm/tools/llvm-mca/SummaryView.h2
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;
};
OpenPOWER on IntegriCloud