Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
farhan-108 committed Dec 10, 2024
1 parent c9ca8d4 commit a35013f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions core/id_stage.sv
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,10 @@ module id_stage #(
logic [CVA6Cfg.NrIssuePorts-1:0] is_macro_instr_i;
logic stall_instr_fetch;
logic stall_macro_deco, stall_macro_deco_zcmp, stall_macro_deco_zcmt;
logic is_last_macro_instr_o;
logic is_double_rd_macro_instr_o;
logic is_zcmt_instr_i;
branchpredict_sbe_t branch_predict;
logic is_last_macro_instr_o;
logic is_double_rd_macro_instr_o;
logic is_zcmt_instr_i;
branchpredict_sbe_t branch_predict;

if (CVA6Cfg.RVC) begin
// ---------------------------------------------------------
Expand Down Expand Up @@ -189,7 +189,7 @@ module id_stage #(
);

assign instruction_cvxif[0] = is_zcmt_instr_i ? instruction_cvxif_zcmt : instruction_cvxif_zcmp;
assign is_illegal_cvxif[0] = is_zcmt_instr_i ? is_illegal_cvxif_zcmt : is_illegal_cvxif_zcmp;
assign is_illegal_cvxif[0] = is_zcmt_instr_i ? is_illegal_cvxif_zcmt : is_illegal_cvxif_zcmp;
assign is_compressed_cvxif[0] = is_zcmt_instr_i ? is_compressed_cvxif_zcmt : is_compressed_cvxif_zcmp;
assign stall_macro_deco = is_zcmt_instr_i ? stall_macro_deco_zcmt : stall_macro_deco_zcmp;
if (CVA6Cfg.SuperscalarEn) begin
Expand Down

0 comments on commit a35013f

Please sign in to comment.