mirror of https://github.com/YosysHQ/abc.git
Bug fix in stadard cell library representation.
This commit is contained in:
parent
871684d2a0
commit
a87a3b4e33
|
|
@ -195,9 +195,11 @@ Vec_Int_t * Amap_LibDeriveGatePerm_rec( Amap_Lib_t * pLib, Kit_DsdNtk_t * pNtk,
|
|||
break;
|
||||
}
|
||||
}
|
||||
assert( iDsdLit == Vec_IntSize(vDsdLits) );
|
||||
Vec_IntFree( vNodFanin );
|
||||
Vec_IntFree( vDsdLits );
|
||||
// assert( iDsdLit == Vec_IntSize(vDsdLits) );
|
||||
if ( iDsdLit != Vec_IntSize(vDsdLits) )
|
||||
Vec_IntFreeP( &vPerm );
|
||||
return vPerm;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue