mirror of https://github.com/YosysHQ/yosys.git
Ignore change on last edge
This commit is contained in:
parent
33f4009bb5
commit
9c7deabf94
|
@ -201,10 +201,11 @@ void FstData::reconstructAllAtTimes(std::vector<fstHandle> &signal, uint64_t sta
|
|||
fstReaderSetUnlimitedTimeRange(ctx);
|
||||
fstReaderSetFacProcessMaskAll(ctx);
|
||||
fstReaderIterBlocks2(ctx, reconstruct_clb_attimes, reconstruct_clb_varlen_attimes, this, nullptr);
|
||||
past_data = last_data;
|
||||
callback(last_time);
|
||||
if (last_time!=end_time)
|
||||
callback(end_time);
|
||||
if (last_time!=end_time) {
|
||||
past_data = last_data;
|
||||
callback(last_time);
|
||||
}
|
||||
callback(end_time);
|
||||
}
|
||||
|
||||
std::string FstData::valueOf(fstHandle signal)
|
||||
|
|
Loading…
Reference in New Issue