Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions src/opt/eslim/eslimCirMan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -563,8 +563,11 @@ namespace eSLIM {
int id = Gia_ManAppendCo( pNew, fanin0 );
node_ids[i] = id;
}

return pNew;
// Gates may become unreachable due to constant gates,
// potentially causing the inprocessing step to fail.
Gia_Man_t * pStrash = Gia_ManRehash( pNew, 0 );
Gia_ManStop( pNew );
return pStrash;
}

Abc_Ntk_t* eSLIMCirMan::eSLIMCirManToNtk() {
Expand Down
Loading