diff options
author | gatecat <gatecat@ds0.me> | 2022-05-22 13:56:36 +0100 |
---|---|---|
committer | gatecat <gatecat@ds0.me> | 2022-05-22 13:56:36 +0100 |
commit | 447b5b905cb274f3abbad64812026240d7044c37 (patch) | |
tree | d20c01e6261dc1baa7474c2d8b9044943be2cf29 /common | |
parent | e9004943948d2f1a3e68aaeac555f70b7091941d (diff) | |
download | nextpnr-447b5b905cb274f3abbad64812026240d7044c37.tar.gz nextpnr-447b5b905cb274f3abbad64812026240d7044c37.tar.bz2 nextpnr-447b5b905cb274f3abbad64812026240d7044c37.zip |
Don't assert on mixed domain paths in report
Signed-off-by: gatecat <gatecat@ds0.me>
Diffstat (limited to 'common')
-rw-r--r-- | common/kernel/report.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/common/kernel/report.cc b/common/kernel/report.cc index 98ff14fb..8f583b33 100644 --- a/common/kernel/report.cc +++ b/common/kernel/report.cc @@ -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)}, |