diff options
Diffstat (limited to 'llvm/tools/llvm-mca/llvm-mca.cpp')
-rw-r--r-- | llvm/tools/llvm-mca/llvm-mca.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-mca/llvm-mca.cpp b/llvm/tools/llvm-mca/llvm-mca.cpp index 8acfd46b1f0..baba4056061 100644 --- a/llvm/tools/llvm-mca/llvm-mca.cpp +++ b/llvm/tools/llvm-mca/llvm-mca.cpp @@ -330,7 +330,7 @@ int main(int argc, char **argv) { if (PrintModeVerbose) { std::unique_ptr<mca::BackendStatistics> BS = - llvm::make_unique<mca::BackendStatistics>(*B); + llvm::make_unique<mca::BackendStatistics>(*B, *STI); Printer->addView(std::move(BS)); } |