From 9bde2391433abb216613dc9f90a74b098f10e454 Mon Sep 17 00:00:00 2001 From: bbracker Date: Mon, 3 May 2021 09:25:22 -0400 Subject: [PATCH] ifu lint fixes --- wally-pipelined/src/ifu/ifu.sv | 2 +- wally-pipelined/src/ifu/localHistoryPredictor.sv | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wally-pipelined/src/ifu/ifu.sv b/wally-pipelined/src/ifu/ifu.sv index 1df3b5ff5..371205051 100644 --- a/wally-pipelined/src/ifu/ifu.sv +++ b/wally-pipelined/src/ifu/ifu.sv @@ -184,7 +184,7 @@ module ifu ( assign BPPredDirWrongE = 1'b0; assign BTBPredPCWrongE = 1'b0; assign RASPredPCWrongE = 1'b0; - assign BPPredClassNonCFIWrong = 1'b0; + assign BPPredClassNonCFIWrongE = 1'b0; end endgenerate // The true correct target is PCTargetE if PCSrcE is 1 else it is the fall through PCLinkE. diff --git a/wally-pipelined/src/ifu/localHistoryPredictor.sv b/wally-pipelined/src/ifu/localHistoryPredictor.sv index 70e85562e..2d5469fd9 100644 --- a/wally-pipelined/src/ifu/localHistoryPredictor.sv +++ b/wally-pipelined/src/ifu/localHistoryPredictor.sv @@ -44,7 +44,7 @@ module localHistoryPredictor ); logic [2**m-1:0][k-1:0] LHRNextF; - logic [k-1:0] LHRF, ForwardLHRNext; + logic [k-1:0] LHRF, LHRFNext, ForwardLHRNext; logic [m-1:0] LookUpPCIndex, UpdatePCIndex; logic [1:0] PredictionMemory; logic DoForwarding, DoForwardingF, DoForwardingPHT, DoForwardingPHTF;