[MCA] Removed unused variable.

This commit is contained in:
Patrick Holland 2022-03-13 21:55:13 -07:00
parent c24b3db45c
commit 3e12e83ea4
1 changed files with 0 additions and 1 deletions

View File

@ -158,7 +158,6 @@ bool DispatchStage::isAvailable(const InstRef &IR) const {
const Instruction &Inst = *IR.getInstruction();
unsigned NumMicroOps = Inst.getNumMicroOps();
const InstrDesc &Desc = Inst.getDesc();
unsigned Required = std::min(NumMicroOps, DispatchWidth);
if (Required > AvailableEntries)
return false;