diff options
| author | Matt Davis <Matthew.Davis@sony.com> | 2018-08-29 00:41:04 +0000 |
|---|---|---|
| committer | Matt Davis <Matthew.Davis@sony.com> | 2018-08-29 00:41:04 +0000 |
| commit | d9198907a693d8c2210c163c1638d23d50f7ccd5 (patch) | |
| tree | 1fd3d0d3c55d3d4653b92cb6d36d929cbfef54bb /llvm/tools/llvm-mca/lib/Context.cpp | |
| parent | 15ecfbf1f6bb73ab59ae1e425ad2e8453c9b7f6c (diff) | |
| download | bcm5719-llvm-d9198907a693d8c2210c163c1638d23d50f7ccd5.tar.gz bcm5719-llvm-d9198907a693d8c2210c163c1638d23d50f7ccd5.zip | |
[llvm-mca] Remove unused formal. NFC.
llvm-svn: 340888
Diffstat (limited to 'llvm/tools/llvm-mca/lib/Context.cpp')
| -rw-r--r-- | llvm/tools/llvm-mca/lib/Context.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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<FetchStage>(IB, SrcMgr); - auto Dispatch = llvm::make_unique<DispatchStage>( - STI, MRI, Opts.RegisterFileSize, Opts.DispatchWidth, *RCU, *PRF); + auto Dispatch = llvm::make_unique<DispatchStage>(STI, MRI, Opts.DispatchWidth, + *RCU, *PRF); auto Execute = llvm::make_unique<ExecuteStage>(*HWS); auto Retire = llvm::make_unique<RetireStage>(*RCU, *PRF); |

