From: Andrew Bardsley Date: Tue, 2 Dec 2014 11:08:13 +0000 (-0500) Subject: cpu: Fix memoryIssueLimit checking in Minor X-Git-Tag: stable_2015_04_15~87 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=98f3e7a3108dc41daae3e9c8ef448cf948b840b1;p=gem5.git cpu: Fix memoryIssueLimit checking in Minor This patch fixes the checking of the number of memory instructions issued per cycles in the Minor CPU. --- diff --git a/src/cpu/minor/execute.cc b/src/cpu/minor/execute.cc index 69cb9a239..f7b773377 100644 --- a/src/cpu/minor/execute.cc +++ b/src/cpu/minor/execute.cc @@ -671,7 +671,7 @@ Execute::issue(bool only_issue_microops) timing->extraAssumedLat; } - bool issued_mem_ref = inst->isMemRef(); + issued_mem_ref = inst->isMemRef(); QueuedInst fu_inst(inst);