Skip to content

Commit

Permalink
Fixing assertion failures in &put.
Browse files Browse the repository at this point in the history
  • Loading branch information
alanminko committed Oct 23, 2024
1 parent cb2140d commit ecd9480
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/base/abci/abc.c
Original file line number Diff line number Diff line change
Expand Up @@ -32313,7 +32313,7 @@ int Abc_CommandAbc9Put( Abc_Frame_t * pAbc, int argc, char ** argv )
Abc_Print( 0, "Internal nodes names are not transferred.\n" );

// decouple CI/CO with the same name
if ( pAbc->pGia->vNamesIn || pAbc->pGia->vNamesOut )
if ( !Abc_NtkIsStrash(pNtk) && (pAbc->pGia->vNamesIn || pAbc->pGia->vNamesOut) )
Abc_NtkRedirectCiCo( pNtk );

// transfer timing information
Expand Down

0 comments on commit ecd9480

Please sign in to comment.