diff options
Diffstat (limited to 'llvm/tools/llvm-mca/lib/Context.cpp')
-rw-r--r-- | llvm/tools/llvm-mca/lib/Context.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-mca/lib/Context.cpp b/llvm/tools/llvm-mca/lib/Context.cpp index c84ea73c4d2..4e30fc9de31 100644 --- a/llvm/tools/llvm-mca/lib/Context.cpp +++ b/llvm/tools/llvm-mca/lib/Context.cpp @@ -41,7 +41,7 @@ Context::createDefaultPipeline(const PipelineOptions &Opts, InstrBuilder &IB, auto HWS = llvm::make_unique<Scheduler>(SM, LSU.get()); // Create the pipeline stages. - auto Fetch = llvm::make_unique<FetchStage>(IB, SrcMgr); + auto Fetch = llvm::make_unique<FetchStage>(SrcMgr); auto Dispatch = llvm::make_unique<DispatchStage>(STI, MRI, Opts.DispatchWidth, *RCU, *PRF); auto Execute = llvm::make_unique<ExecuteStage>(*HWS); |