From 98f3e7a3108dc41daae3e9c8ef448cf948b840b1 Mon Sep 17 00:00:00 2001 From: Andrew Bardsley Date: Tue, 2 Dec 2014 06:08:13 -0500 Subject: cpu: Fix memoryIssueLimit checking in Minor This patch fixes the checking of the number of memory instructions issued per cycles in the Minor CPU. --- src/cpu/minor/execute.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/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); -- cgit v1.2.3