diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2011-07-11 10:10:46 +0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2011-07-11 10:10:46 +0700 |
commit | 3a6c8f1c429e556332fcc8544ca06cc58270bd7e (patch) | |
tree | b664b8faafd03dc07b16cb020947a3c245e050aa /src/map | |
parent | 204fac4dca548c75d42c27bd939a565bcf7c3642 (diff) | |
download | abc-3a6c8f1c429e556332fcc8544ca06cc58270bd7e.tar.gz abc-3a6c8f1c429e556332fcc8544ca06cc58270bd7e.tar.bz2 abc-3a6c8f1c429e556332fcc8544ca06cc58270bd7e.zip |
Other changes to enable new features in the mapper (bug fix).
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/if/ifMap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/if/ifMap.c b/src/map/if/ifMap.c index fb8e763c..8b00ab01 100644 --- a/src/map/if/ifMap.c +++ b/src/map/if/ifMap.c @@ -305,7 +305,7 @@ void If_ObjPerformMappingChoice( If_Man_t * p, If_Obj_t * pObj, int Mode, int fP if ( If_CutFilter( pCutSet, pCut ) ) continue; // check if the cut satisfies the required times - assert( pCut->Delay == If_CutDelay( p, pObj, pCut ) ); + assert( pCut->Delay == If_CutDelay( p, pTemp, pCut ) ); if ( Mode && pCut->Delay > pObj->Required + p->fEpsilon ) continue; // set the phase attribute |