From: Andrea Di Biagio Date: Thu, 8 Mar 2018 17:02:28 +0000 (+0000) Subject: [llvm-mca] add override keyword to method ResourcePressureView::printView(). X-Git-Tag: llvmorg-7.0.0-rc1~11098 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=07eb79a5934dae14440508292d6a685666ca5ff3;p=platform%2Fupstream%2Fllvm.git [llvm-mca] add override keyword to method ResourcePressureView::printView(). NFC. llvm-svn: 327027 --- diff --git a/llvm/tools/llvm-mca/ResourcePressureView.h b/llvm/tools/llvm-mca/ResourcePressureView.h index ad8c1b7..3521d02 100644 --- a/llvm/tools/llvm-mca/ResourcePressureView.h +++ b/llvm/tools/llvm-mca/ResourcePressureView.h @@ -101,7 +101,7 @@ public: unsigned Index, const llvm::ArrayRef> &Used) override; - void printView(llvm::raw_ostream &OS) const { + void printView(llvm::raw_ostream &OS) const override { unsigned Executions = Source.getNumIterations(); printResourcePressurePerIteration(OS, Executions); printResourcePressurePerInstruction(OS, Executions);