3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-12 20:18:20 +00:00

Ignore change on last edge

This commit is contained in:
Miodrag Milanovic 2022-04-22 15:24:02 +02:00
parent 33f4009bb5
commit 9c7deabf94

View file

@ -201,10 +201,11 @@ void FstData::reconstructAllAtTimes(std::vector<fstHandle> &signal, uint64_t sta
fstReaderSetUnlimitedTimeRange(ctx); fstReaderSetUnlimitedTimeRange(ctx);
fstReaderSetFacProcessMaskAll(ctx); fstReaderSetFacProcessMaskAll(ctx);
fstReaderIterBlocks2(ctx, reconstruct_clb_attimes, reconstruct_clb_varlen_attimes, this, nullptr); fstReaderIterBlocks2(ctx, reconstruct_clb_attimes, reconstruct_clb_varlen_attimes, this, nullptr);
past_data = last_data; if (last_time!=end_time) {
callback(last_time); past_data = last_data;
if (last_time!=end_time) callback(last_time);
callback(end_time); }
callback(end_time);
} }
std::string FstData::valueOf(fstHandle signal) std::string FstData::valueOf(fstHandle signal)