From 204fac4dca548c75d42c27bd939a565bcf7c3642 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Sun, 10 Jul 2011 13:56:05 +0700 Subject: Other changes to enable new features in the mapper. --- src/map/if/ifUtil.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/map/if/ifUtil.c') diff --git a/src/map/if/ifUtil.c b/src/map/if/ifUtil.c index f752baef..b1ec7169 100644 --- a/src/map/if/ifUtil.c +++ b/src/map/if/ifUtil.c @@ -223,12 +223,12 @@ void If_ManComputeRequired( If_Man_t * p ) } // go through the nodes in the reverse topological order // Vec_PtrForEachEntry( If_Obj_t *, p->vMapped, pObj, i ) - // If_CutPropagateRequired( p, If_ObjCutBest(pObj), pObj->Required ); + // If_CutPropagateRequired( p, pObj, If_ObjCutBest(pObj), pObj->Required ); If_ManForEachObjReverse( p, pObj, i ) { if ( pObj->nRefs == 0 ) continue; - If_CutPropagateRequired( p, If_ObjCutBest(pObj), pObj->Required ); + If_CutPropagateRequired( p, pObj, If_ObjCutBest(pObj), pObj->Required ); } } else @@ -298,7 +298,7 @@ void If_ManComputeRequired( If_Man_t * p ) { if ( pObj->nRefs == 0 ) continue; - If_CutPropagateRequired( p, If_ObjCutBest(pObj), pObj->Required ); + If_CutPropagateRequired( p, pObj, If_ObjCutBest(pObj), pObj->Required ); } else if ( If_ObjIsCi(pObj) ) { -- cgit v1.2.3