From 000f48cd75f3643874776f02c4f7f5a8be2db92f Mon Sep 17 00:00:00 2001 From: Jarred Allen Date: Thu, 29 Apr 2021 14:36:56 -0400 Subject: [PATCH] Fix compile error in branch predictor --- wally-pipelined/src/ifu/localHistoryPredictor.sv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wally-pipelined/src/ifu/localHistoryPredictor.sv b/wally-pipelined/src/ifu/localHistoryPredictor.sv index a79deff23..70e85562e 100644 --- a/wally-pipelined/src/ifu/localHistoryPredictor.sv +++ b/wally-pipelined/src/ifu/localHistoryPredictor.sv @@ -97,7 +97,7 @@ assign ForwardLHRNext = DoForwarding ? LHRFNext :LHRNextF[LookUpPCIndex]; -assign DoForwardingPHT = LHRENext == ForwardLHRNext; +assign DoForwardingPHT = LHRFNext == ForwardLHRNext; // register the update value and the forwarding signal into the Fetch stage // TODO: add stall logic ***