From d9198907a693d8c2210c163c1638d23d50f7ccd5 Mon Sep 17 00:00:00 2001 From: Matt Davis Date: Wed, 29 Aug 2018 00:41:04 +0000 Subject: [llvm-mca] Remove unused formal. NFC. llvm-svn: 340888 --- llvm/tools/llvm-mca/lib/Context.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'llvm/tools/llvm-mca/lib/Context.cpp') diff --git a/llvm/tools/llvm-mca/lib/Context.cpp b/llvm/tools/llvm-mca/lib/Context.cpp index d2cb27fecec..c84ea73c4d2 100644 --- a/llvm/tools/llvm-mca/lib/Context.cpp +++ b/llvm/tools/llvm-mca/lib/Context.cpp @@ -42,8 +42,8 @@ Context::createDefaultPipeline(const PipelineOptions &Opts, InstrBuilder &IB, // Create the pipeline stages. auto Fetch = llvm::make_unique(IB, SrcMgr); - auto Dispatch = llvm::make_unique( - STI, MRI, Opts.RegisterFileSize, Opts.DispatchWidth, *RCU, *PRF); + auto Dispatch = llvm::make_unique(STI, MRI, Opts.DispatchWidth, + *RCU, *PRF); auto Execute = llvm::make_unique(*HWS); auto Retire = llvm::make_unique(*RCU, *PRF); -- cgit v1.2.3