1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

[llvm-mca] add override keyword to method ResourcePressureView::printView().

NFC.

llvm-svn: 327027
This commit is contained in:
Andrea Di Biagio 2018-03-08 17:02:28 +00:00
parent 2b8ccc911c
commit 90adf354a8

View File

@ -101,7 +101,7 @@ public:
unsigned Index,
const llvm::ArrayRef<std::pair<ResourceRef, unsigned>> &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);