build/sim/core: Cast main_time to vluint64_t to avoid ambiguity error of the dump function to be used.
This commit is contained in:
parent
134c628357
commit
d3407c67b1
|
@ -72,7 +72,7 @@ extern "C" void litex_sim_tracer_dump()
|
||||||
}
|
}
|
||||||
|
|
||||||
if (dump_enabled && tfp_start <= main_time && main_time <= tfp_end) {
|
if (dump_enabled && tfp_start <= main_time && main_time <= tfp_end) {
|
||||||
tfp->dump(main_time);
|
tfp->dump((vluint64_t) main_time);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue