diff options
author | myrtle <gatecat@ds0.me> | 2022-05-22 14:31:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-22 14:31:55 +0100 |
commit | 48f9daf867be56ffae9197adf18393786a4515c5 (patch) | |
tree | d20c01e6261dc1baa7474c2d8b9044943be2cf29 /common/kernel | |
parent | e9004943948d2f1a3e68aaeac555f70b7091941d (diff) | |
parent | 447b5b905cb274f3abbad64812026240d7044c37 (diff) | |
download | nextpnr-48f9daf867be56ffae9197adf18393786a4515c5.tar.gz nextpnr-48f9daf867be56ffae9197adf18393786a4515c5.tar.bz2 nextpnr-48f9daf867be56ffae9197adf18393786a4515c5.zip |
Merge pull request #990 from YosysHQ/gatecat/fix-988
Don't assert on mixed domain paths in report
Diffstat (limited to 'common/kernel')
-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)}, |