Skip to content

Commit

Permalink
Undoing a92094e
Browse files Browse the repository at this point in the history
  • Loading branch information
dpetrisko committed Mar 15, 2021
1 parent 8f545d1 commit 2c7c3da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bp_fe/src/v/bp_fe_pc_gen.sv
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ module bp_fe_pc_gen
wire is_ret = fetch_instr_v_i & scan_instr.ret;

// BTB
wire btb_r_v_li = next_pc_yumi_i & ~ovr_taken & ~ovr_ret & ~redirect_br_v_i;
wire btb_r_v_li = next_pc_yumi_i & ~ovr_taken & ~ovr_ret;
wire btb_w_v_li = (redirect_br_v_i & redirect_br_taken_i)
| (redirect_br_v_i & redirect_br_nonbr_i & redirect_br_metadata_fwd.src_btb)
| (attaboy_v_i & attaboy_taken_i & ~attaboy_br_metadata_fwd.src_btb);
Expand Down Expand Up @@ -149,7 +149,7 @@ module bp_fe_pc_gen
);

// BHT
wire bht_r_v_li = next_pc_yumi_i & ~ovr_taken & ~ovr_ret & ~redirect_br_v_i;
wire bht_r_v_li = next_pc_yumi_i & ~ovr_taken & ~ovr_ret;
wire [bht_idx_width_p+ghist_width_p-1:0] bht_idx_r_li =
{next_pc_o[2+:bht_idx_width_p], pred_if1_n.ghist};
wire bht_w_v_li =
Expand Down

0 comments on commit 2c7c3da

Please sign in to comment.