From 46fab41f5b386311b166504878aad76b0d800c9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20W=C3=B6lfel?= Date: Mon, 4 May 2020 14:10:50 +0200 Subject: [PATCH] [rtl] Remove redundant assignment --- rtl/ibex_core.sv | 1 - 1 file changed, 1 deletion(-) diff --git a/rtl/ibex_core.sv b/rtl/ibex_core.sv index 7cd89777..ce1b610e 100644 --- a/rtl/ibex_core.sv +++ b/rtl/ibex_core.sv @@ -1126,7 +1126,6 @@ module ibex_core #( rvfi_stage_rs1_rdata[i] <= rvfi_stage_rs1_rdata[i-1]; rvfi_stage_rs2_rdata[i] <= rvfi_stage_rs2_rdata[i-1]; rvfi_stage_rs3_rdata[i] <= rvfi_stage_rs3_rdata[i-1]; - rvfi_stage_rd_addr[i] <= rvfi_stage_rd_addr[i-1]; rvfi_stage_mem_wdata[i] <= rvfi_stage_mem_wdata[i-1]; rvfi_stage_mem_addr[i] <= rvfi_stage_mem_addr[i-1];