summaryrefslogtreecommitdiffstats
path: root/src/bdd/reo/reoUnits.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2011-03-08 20:07:52 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2011-03-08 20:07:52 -0800
commit35f90a777dd92e7647689b93db09ca068cca87a2 (patch)
tree1ebaebd7891228e74da47f73ff040c04ea5a2cd0 /src/bdd/reo/reoUnits.c
parent24f0da1475c715a1daa57fd20159c438728a8fc2 (diff)
downloadabc-35f90a777dd92e7647689b93db09ca068cca87a2.tar.gz
abc-35f90a777dd92e7647689b93db09ca068cca87a2.tar.bz2
abc-35f90a777dd92e7647689b93db09ca068cca87a2.zip
Mffc-based structural decomposition of the network and bug fixes in reordering package.
Diffstat (limited to 'src/bdd/reo/reoUnits.c')
-rw-r--r--src/bdd/reo/reoUnits.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bdd/reo/reoUnits.c b/src/bdd/reo/reoUnits.c
index 70be8b82..7e57ff35 100644
--- a/src/bdd/reo/reoUnits.c
+++ b/src/bdd/reo/reoUnits.c
@@ -97,7 +97,8 @@ void reoUnitsRecycleUnitList( reo_man * p, reo_plane * pPlane )
pTail = pUnit;
pTail->Next = p->pUnitFreeList;
p->pUnitFreeList = pPlane->pHead;
- memset( pPlane, 0, sizeof(reo_plane) );
+// memset( pPlane, 0, sizeof(reo_plane) );
+ pPlane->pHead = NULL;
}
/**Function*************************************************************