mirror of
https://github.com/YosysHQ/abc.git
synced 2026-09-07 11:11:19 +02:00
Fixing some update gcc.
This commit is contained in:
@@ -670,7 +670,7 @@ Vec_Str_t * Pdr_InvPrintStr( Vec_Int_t * vInv, Vec_Int_t * vCounts )
|
||||
Vec_Int_t * vMap = Pdr_InvMap( vCounts );
|
||||
int nVars = Vec_IntSize(vCounts) - Vec_IntCountZero(vCounts);
|
||||
int i, k, * pCube, * pList = Vec_IntArray(vInv);
|
||||
char * pBuffer = ABC_ALLOC( char, nVars );
|
||||
char * pBuffer = ABC_ALLOC( char, (size_t)(unsigned)nVars );
|
||||
for ( i = 0; i < nVars; i++ )
|
||||
pBuffer[i] = '-';
|
||||
Pdr_ForEachCube( pList, pCube, i )
|
||||
|
||||
Reference in New Issue
Block a user