mirror of https://github.com/YosysHQ/abc.git
Fixing a bug, which was accidentally introduced a few months while debugging Boolean decomposition
This commit is contained in:
parent
3fed776860
commit
80d161afaa
|
|
@ -97,8 +97,8 @@ void reoUnitsRecycleUnitList( reo_man * p, reo_plane * pPlane )
|
||||||
pTail = pUnit;
|
pTail = pUnit;
|
||||||
pTail->Next = p->pUnitFreeList;
|
pTail->Next = p->pUnitFreeList;
|
||||||
p->pUnitFreeList = pPlane->pHead;
|
p->pUnitFreeList = pPlane->pHead;
|
||||||
// memset( pPlane, 0, sizeof(reo_plane) );
|
memset( pPlane, 0, sizeof(reo_plane) );
|
||||||
pPlane->pHead = NULL;
|
// pPlane->pHead = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**Function*************************************************************
|
/**Function*************************************************************
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue