diff options
Diffstat (limited to 'llvm/tools/llvm-mca/llvm-mca.cpp')
-rw-r--r-- | llvm/tools/llvm-mca/llvm-mca.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/tools/llvm-mca/llvm-mca.cpp b/llvm/tools/llvm-mca/llvm-mca.cpp index 75886a6b31b..a875c70e17f 100644 --- a/llvm/tools/llvm-mca/llvm-mca.cpp +++ b/llvm/tools/llvm-mca/llvm-mca.cpp @@ -487,8 +487,7 @@ int main(int argc, char **argv) { llvm::make_unique<mca::SummaryView>(SM, Insts, DispatchWidth)); if (EnableBottleneckAnalysis) - Printer.addView(llvm::make_unique<mca::BottleneckAnalysis>( - *STI, *IP, Insts, S.getNumIterations())); + Printer.addView(llvm::make_unique<mca::BottleneckAnalysis>(*STI, Insts)); if (PrintInstructionInfoView) Printer.addView( |