mirror of https://github.com/YosysHQ/abc.git
Compiler warnings.
This commit is contained in:
parent
622d142794
commit
667326b18e
|
|
@ -45,7 +45,7 @@ ABC_NAMESPACE_IMPL_START
|
|||
***********************************************************************/
|
||||
char * Saig_ObjName( Aig_Man_t * p, Aig_Obj_t * pObj )
|
||||
{
|
||||
static char Buffer[100];
|
||||
static char Buffer[1000];
|
||||
if ( Aig_ObjIsNode(pObj) || Aig_ObjIsConst1(pObj) )
|
||||
sprintf( Buffer, "n%0*d", (unsigned char)Abc_Base10Log(Aig_ManObjNumMax(p)), Aig_ObjId(pObj) );
|
||||
else if ( Saig_ObjIsPi(p, pObj) )
|
||||
|
|
|
|||
|
|
@ -2650,7 +2650,8 @@ saucy_alloc(Abc_Ntk_t * pNtk)
|
|||
if (s->ninduce && s->sinduce && s->left.cfront && s->left.clen
|
||||
&& s->right.cfront && s->right.clen
|
||||
&& s->stuff && s->bucket && s->count && s->ccount
|
||||
&& s->clist && s->nextnon-1 && s->prevnon
|
||||
//&& s->clist && s->nextnon-1 && s->prevnon
|
||||
&& s->clist && s->nextnon[-1] && s->prevnon
|
||||
&& s->start && s->gamma && s->theta && s->left.unlab
|
||||
&& s->right.lab && s->right.unlab
|
||||
&& s->left.lab && s->splitvar && s->splitwho && s->junk
|
||||
|
|
|
|||
|
|
@ -256,7 +256,7 @@ Wln_Ntk_t * Wln_NtkFromNdr( void * pData, int fDump )
|
|||
pNtk->pManName = Abc_NamStart( NameIdMax+1, 10 );
|
||||
for ( i = 1; i <= NameIdMax; i++ )
|
||||
{
|
||||
char pName[1000]; sprintf( pName, "s%0*d", nDigits, i );
|
||||
char pName[1000]; sprintf( pName, "s%0*d", (unsigned char)nDigits, i );
|
||||
NameId = Abc_NamStrFindOrAdd( pNtk->pManName, pName, &fFound );
|
||||
assert( !fFound && i == NameId );
|
||||
}
|
||||
|
|
|
|||
|
|
@ -576,7 +576,7 @@ void Rtl_NtkNormRanges( Rtl_Ntk_t * p )
|
|||
int Offset = Rtl_WireOffset( p, Wire );
|
||||
int First = Rtl_WireFirst( p, Wire );
|
||||
assert( First >> 4 == NameId );
|
||||
if ( Offset );
|
||||
if ( Offset )
|
||||
{
|
||||
Left -= Offset;
|
||||
Right -= Offset;
|
||||
|
|
@ -1098,13 +1098,13 @@ void Rtl_NtkPrintWire( Rtl_Ntk_t * p, int * pWire )
|
|||
void Rtl_NtkPrintCell( Rtl_Ntk_t * p, int * pCell )
|
||||
{
|
||||
int i, Par, Val;
|
||||
Rtl_CellForEachAttr( p, pCell, Par, Val, i )
|
||||
fprintf( Rtl_NtkFile(p), " attribute %s %s\n", Rtl_NtkStr(p, Par), Rtl_NtkStr(p, Val) );
|
||||
Rtl_CellForEachAttr( p, pCell, Par, Val, i ) {
|
||||
fprintf( Rtl_NtkFile(p), " attribute %s %s\n", Rtl_NtkStr(p, Par), Rtl_NtkStr(p, Val) ); }
|
||||
fprintf( Rtl_NtkFile(p), " cell %s %s\n", Rtl_NtkStr(p, Rtl_CellType(pCell)), Rtl_NtkStr(p, pCell[1]) );
|
||||
Rtl_CellForEachParam( p, pCell, Par, Val, i )
|
||||
fprintf( Rtl_NtkFile(p), " parameter" ), Rtl_NtkPrintSig(p, Par), Rtl_NtkPrintSig(p, Val), printf( "\n" );
|
||||
Rtl_CellForEachConnect( p, pCell, Par, Val, i )
|
||||
fprintf( Rtl_NtkFile(p), " connect" ), Rtl_NtkPrintSig(p, Par), Rtl_NtkPrintSig(p, Val), printf( "\n" );
|
||||
Rtl_CellForEachConnect( p, pCell, Par, Val, i ) {
|
||||
fprintf( Rtl_NtkFile(p), " connect" ), Rtl_NtkPrintSig(p, Par), Rtl_NtkPrintSig(p, Val), printf( "\n" ); }
|
||||
fprintf( Rtl_NtkFile(p), " end\n" );
|
||||
}
|
||||
void Rtl_NtkPrintConnection( Rtl_Ntk_t * p, int * pCon )
|
||||
|
|
|
|||
|
|
@ -211,7 +211,7 @@ void Bdc_SpfdDecompose( word Truth, int nVars, int nCands, int nGatesMax )
|
|||
vWeight = Vec_IntAlloc( 100 );
|
||||
|
||||
// initialize elementary variables
|
||||
pNode = ABC_CALLOC( Bdc_Nod_t, nVars );
|
||||
pNode = ABC_CALLOC( Bdc_Nod_t, (unsigned char)nVars );
|
||||
for ( i = 0; i < nVars; i++ )
|
||||
pNode[i].Truth = Truths[i];
|
||||
for ( i = 0; i < nVars; i++ )
|
||||
|
|
|
|||
Loading…
Reference in New Issue