summaryrefslogtreecommitdiffstats
path: root/llvm/tools/llvm-mca/Context.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/tools/llvm-mca/Context.cpp')
-rw-r--r--llvm/tools/llvm-mca/Context.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/tools/llvm-mca/Context.cpp b/llvm/tools/llvm-mca/Context.cpp
index 8bfc56bc569..685714e64b9 100644
--- a/llvm/tools/llvm-mca/Context.cpp
+++ b/llvm/tools/llvm-mca/Context.cpp
@@ -40,9 +40,7 @@ Context::createDefaultPipeline(const PipelineOptions &Opts, InstrBuilder &IB,
SM, Opts.LoadQueueSize, Opts.StoreQueueSize, Opts.AssumeNoAlias);
// Create the pipeline and its stages.
- auto P = llvm::make_unique<Pipeline>(
- Opts.DispatchWidth, Opts.RegisterFileSize, Opts.LoadQueueSize,
- Opts.StoreQueueSize, Opts.AssumeNoAlias);
+ auto P = llvm::make_unique<Pipeline>();
auto F = llvm::make_unique<FetchStage>(IB, SrcMgr);
auto D = llvm::make_unique<DispatchStage>(
STI, MRI, Opts.RegisterFileSize, Opts.DispatchWidth, *RCU, *PRF, *HWS);
OpenPOWER on IntegriCloud