Skip to content

Commit a7d1ef7

Browse files
committed
Fix Verilator 5.010 compilation error
Verilator was throwing a compilation error due to MULTIDRIVEN and BLKSEQ in ibex_tracer.sv This change ensures successful compilation with Verilator 5.010
1 parent 97df7a5 commit a7d1ef7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

rtl/ibex_tracer.sv

+4
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,9 @@ module ibex_tracer (
116116
$sformat(file_name, "%s_%h.log", file_name_base, hart_id_i);
117117

118118
$display("%m: Writing execution trace to %s", file_name);
119+
/* verilator lint_off BLKSEQ */
119120
file_handle = $fopen(file_name, "w");
121+
/* verilator lint_on BLKSEQ */
120122
$fwrite(file_handle,
121123
"Time\tCycle\tPC\tInsn\tDecoded instruction\tRegister and memory contents\n");
122124
end
@@ -759,8 +761,10 @@ module ibex_tracer (
759761
end
760762

761763
always_comb begin
764+
/* verilator lint_off MULTIDRIVEN */
762765
decoded_str = "";
763766
data_accessed = 5'h0;
767+
/* verilator lint_on MULTIDRIVEN */
764768
insn_is_compressed = 0;
765769

766770
// Check for compressed instructions

0 commit comments

Comments
 (0)