mirror of https://github.com/YosysHQ/nextpnr.git
typo fix
This commit is contained in:
parent
5a9be3880a
commit
88af4b4650
|
|
@ -178,7 +178,7 @@ APassThroughCell::APassThroughCell(CellInfo *lower, CellInfo *upper, IdString na
|
|||
void APassThroughCell::clean_up(Context *ctx)
|
||||
{
|
||||
auto *lower_net = lower->ports.at(id_IN1).net;
|
||||
auto *upper_net = lower->ports.at(id_IN1).net;
|
||||
auto *upper_net = upper->ports.at(id_IN1).net;
|
||||
|
||||
NPNR_ASSERT(lower_net != nullptr);
|
||||
NPNR_ASSERT(upper_net != nullptr);
|
||||
|
|
|
|||
Loading…
Reference in New Issue