summaryrefslogtreecommitdiffstats
path: root/src/base/abci/abcReorder.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/abci/abcReorder.c')
-rw-r--r--src/base/abci/abcReorder.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/abci/abcReorder.c b/src/base/abci/abcReorder.c
index 182780cd..340e3d17 100644
--- a/src/base/abci/abcReorder.c
+++ b/src/base/abci/abcReorder.c
@@ -46,7 +46,7 @@ void Abc_NodeBddReorder( reo_man * p, Abc_Obj_t * pNode )
DdNode * bFunc;
int * pOrder, i;
// create the temporary array for the variable order
- pOrder = ALLOC( int, Abc_ObjFaninNum(pNode) );
+ pOrder = ABC_ALLOC( int, Abc_ObjFaninNum(pNode) );
for ( i = 0; i < Abc_ObjFaninNum(pNode); i++ )
pOrder[i] = -1;
// reorder the BDD
@@ -58,7 +58,7 @@ void Abc_NodeBddReorder( reo_man * p, Abc_Obj_t * pNode )
pOrder[i] = pNode->vFanins.pArray[ pOrder[i] ];
Abc_ObjForEachFanin( pNode, pFanin, i )
pNode->vFanins.pArray[i] = pOrder[i];
- free( pOrder );
+ ABC_FREE( pOrder );
}
/**Function*************************************************************