Don't assert on mixed domain paths in report

Signed-off-by: gatecat <gatecat@ds0.me>
This commit is contained in:
gatecat 2022-05-22 13:56:36 +01:00
parent e900494394
commit 447b5b905c

View File

@ -131,11 +131,6 @@ static Json::array report_detailed_net_timings(const Context *ctx)
Json::array endpointsJson;
for (const auto &sink_timing : it.second) {
// FIXME: Is it possible that there are multiple different start
// events for a single net? It has a single driver
NPNR_ASSERT(sink_timing.clock_pair.start == start);
auto endpointJson = Json::object({{"cell", sink_timing.cell_port.first.c_str(ctx)},
{"port", sink_timing.cell_port.second.c_str(ctx)},
{"event", clock_event_name(ctx, sink_timing.clock_pair.end)},