From 4143421e93faae56dbbaacae992dc06aaf10d009 Mon Sep 17 00:00:00 2001 From: Vaibhav Jain Date: Tue, 12 Dec 2023 18:37:11 +0800 Subject: [PATCH] remove redundant time variable Signed-off-by: Vaibhav Jain --- cv32e40p/tb/uvmt/uvmt_cv32e40p_dut_wrap.sv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cv32e40p/tb/uvmt/uvmt_cv32e40p_dut_wrap.sv b/cv32e40p/tb/uvmt/uvmt_cv32e40p_dut_wrap.sv index e5f7e7e3ba..fc232c489a 100644 --- a/cv32e40p/tb/uvmt/uvmt_cv32e40p_dut_wrap.sv +++ b/cv32e40p/tb/uvmt/uvmt_cv32e40p_dut_wrap.sv @@ -132,7 +132,7 @@ module uvmt_cv32e40p_dut_wrap assign irq = interrupt_if.irq_drv; always @(irq) begin - `uvm_info("uvmt_cv32e40p_dut_wrap", $sformatf(" @%0t; irq = %8x", $time, irq), UVM_HIGH); + `uvm_info("uvmt_cv32e40p_dut_wrap", $sformatf("irq = %8x", irq), UVM_HIGH); end // -------------------------------------------------------------