mirror of https://github.com/YosysHQ/abc.git
Corner-case bug fix.
This commit is contained in:
parent
588122dc72
commit
1ffdbbbebe
|
|
@ -860,7 +860,8 @@ int Abc_AigReplace( Abc_Aig_t * pMan, Abc_Obj_t * pOld, Abc_Obj_t * pNew, int fU
|
|||
pOld = (Abc_Obj_t *)Vec_PtrPop( pMan->vStackReplaceOld );
|
||||
pNew = (Abc_Obj_t *)Vec_PtrPop( pMan->vStackReplaceNew );
|
||||
if ( Abc_ObjFanoutNum(pOld) == 0 )
|
||||
return 0;
|
||||
//return 0;
|
||||
continue;
|
||||
Abc_AigReplace_int( pMan, pOld, pNew, fUpdateLevel );
|
||||
}
|
||||
if ( fUpdateLevel )
|
||||
|
|
|
|||
Loading…
Reference in New Issue