[dv] Remove phase argument from collect_trans

This commit applies the patch from lowRISC/opentitan@18b0ced to the Ibex
repository.

Signed-off-by: Pascal Nasahl <nasahlpa@lowrisc.org>
This commit is contained in:
Pascal Nasahl 2024-05-28 15:52:36 +00:00 committed by Greg Chadwick
parent 957529c4bd
commit d019dccb4b
2 changed files with 2 additions and 2 deletions

View file

@ -35,7 +35,7 @@ class ibex_icache_core_monitor extends dv_base_monitor #(
endtask
// collect transactions forever - already forked in dv_base_moditor::run_phase
virtual protected task collect_trans(uvm_phase phase);
virtual protected task collect_trans();
ibex_icache_core_bus_item trans;
logic last_inval = 0;
logic last_enable = 0;

View file

@ -30,7 +30,7 @@ class ibex_icache_mem_monitor
endtask
// Collect transactions forever. Forked in dv_base_moditor::run_phase
protected task automatic collect_trans(uvm_phase phase);
protected task automatic collect_trans();
fork
collect_grants();
collect_responses();