bug fix related to LSQ forwarding
This commit is contained in:
parent
013679c50d
commit
353eb5f018
|
@ -411,6 +411,9 @@ public class LSQ extends SimulationElement
|
|||
{
|
||||
LSQEntry lsqEntry = ((LSQEntryContainingEvent)(event)).getLsqEntry();
|
||||
|
||||
if(lsqEntry.isForwarded())
|
||||
return;
|
||||
|
||||
boolean requestIssued = this.containingMemSys.issueRequestToL1Cache(RequestType.Cache_Read, lsqEntry.getAddr());
|
||||
|
||||
if(requestIssued == false)
|
||||
|
|
Loading…
Reference in New Issue