Merge pull request #175 from daveshah1/fix_lutcascade

icetime: Remove non-existent paths from ce/sr to ltout
This commit is contained in:
Clifford Wolf 2018-07-20 15:02:38 +02:00 committed by GitHub
commit d992fc76ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -845,6 +845,11 @@ struct TimingAnalysis
continue;
}
if (driver_type == "LogicCell40" && driver_port == "ltout") {
if (inport == "ce" || inport == "sr")
continue;
}
std::string *in_net = &netlist_cell_ports.at(driver_cell).at(inport);
while (net_assignments.count(*in_net))
in_net = &net_assignments.at(*in_net);