Mismatch occurs between compile log and simulation signals

In reply to dave_59:

hi dave,

it is showing in compile file at 236070000ps. like below.

UVM_INFO …/ran/seq.sv(427) @ 236070000: uvm_test_top.env.ahb_env.ahb_agent.m_sqr@@h_init [init_seq] Interrupt not Set

in simulation intr happens at @ 235990000ps.

it supposed to execute at 235990000ps in log also.

bit	   intr;
.
.
.
.
.
if(intr)
	`uvm_info(get_type_name(),"Interrupt Set",UVM_LOW)//supposed to execute this line.means intr happens in simulation.@ 235990000ps 
	 else
	`uvm_info(get_type_name(),"Interrupt not Set",UVM_LOW)//but it is executing this line.

thanks for replay,