diff --git a/dv/uvm/icache/dv/ibex_icache_core_agent/ibex_icache_core_monitor.sv b/dv/uvm/icache/dv/ibex_icache_core_agent/ibex_icache_core_monitor.sv index deef341858..8b66823c1e 100644 --- a/dv/uvm/icache/dv/ibex_icache_core_agent/ibex_icache_core_monitor.sv +++ b/dv/uvm/icache/dv/ibex_icache_core_agent/ibex_icache_core_monitor.sv @@ -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; diff --git a/dv/uvm/icache/dv/ibex_icache_mem_agent/ibex_icache_mem_monitor.sv b/dv/uvm/icache/dv/ibex_icache_mem_agent/ibex_icache_mem_monitor.sv index b9e5c14df9..6778cd5ab7 100644 --- a/dv/uvm/icache/dv/ibex_icache_mem_agent/ibex_icache_mem_monitor.sv +++ b/dv/uvm/icache/dv/ibex_icache_mem_agent/ibex_icache_mem_monitor.sv @@ -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();