Commit 1f573cfe by Alan Mishchenko

Compiler warnings.

parent b94766bc
......@@ -291,7 +291,7 @@ int Gia_Iso2ManUniqify( Gia_Iso2Man_t * p )
Gia_ManForEachObjVec( p->vTied, p->pGia, pObj, i )
{
printf( "%3d : ", Gia_ObjId(p->pGia, pObj) );
// Extra_PrintBinary( stdout, &pObj->Value, 32 );
Extra_PrintBinary( stdout, &pObj->Value, 32 );
printf( "\n" );
}
#endif
......@@ -300,8 +300,7 @@ int Gia_Iso2ManUniqify( Gia_Iso2Man_t * p )
Vec_IntClear( p->vPlaces );
Gia_ManForEachObjVec( p->vTied, p->pGia, pObj, i )
{
int iObjId = Gia_ObjId(p->pGia, pObj);
for ( k = pObj->Value % nSize; pTemp = pTable[k] ? Gia_ManObj(p->pGia, pTable[k]) : NULL; k = (k + 1) % nSize )
for ( k = pObj->Value % nSize; (pTemp = pTable[k] ? Gia_ManObj(p->pGia, pTable[k]) : NULL); k = (k + 1) % nSize )
if ( pTemp->Value == pObj->Value )
{
pTemp->fMark0 = 1;
......
......@@ -31553,7 +31553,7 @@ usage:
***********************************************************************/
int Abc_CommandAbc9Test( Abc_Frame_t * pAbc, int argc, char ** argv )
{
Gia_Man_t * pTemp = NULL;
// Gia_Man_t * pTemp = NULL;
int c, fVerbose = 0;
int fSwitch = 0;
// extern Gia_Man_t * Gia_VtaTest( Gia_Man_t * p );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment