mirror of
https://github.com/YosysHQ/abc.git
synced 2026-09-01 18:27:44 +02:00
g++ portability changes.
This commit is contained in:
@@ -293,7 +293,7 @@ void Abc_NtkRecDumpTruthTables( Abc_ManRec_t * p )
|
||||
for ( i = 0; i < p->nBins; i++ )
|
||||
for ( pObj = p->pBins[i]; pObj; pObj = pObj->pCopy )
|
||||
{
|
||||
pTruth = Vec_PtrEntry(p->vTtNodes, pObj->Id);
|
||||
pTruth = (unsigned *)Vec_PtrEntry(p->vTtNodes, pObj->Id);
|
||||
if ( (int)Kit_TruthSupport(pTruth, nVars) != (1<<nVars)-1 )
|
||||
continue;
|
||||
Extra_PrintHex( pFile, pTruth, nVars );
|
||||
|
||||
Reference in New Issue
Block a user