diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2014-04-11 13:07:56 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2014-04-11 13:07:56 -0700 |
commit | e7d0c9dc2303737237b40a20179148dd5075232f (patch) | |
tree | d74ad1c1991a938b16ae5578284c6a8e63ef4024 /src/map/if/ifTime.c | |
parent | 865526f88094140c458a244fc8bb279bfa154fc1 (diff) | |
download | abc-e7d0c9dc2303737237b40a20179148dd5075232f.tar.gz abc-e7d0c9dc2303737237b40a20179148dd5075232f.tar.bz2 abc-e7d0c9dc2303737237b40a20179148dd5075232f.zip |
New feature to optimize delay during mapping.
Diffstat (limited to 'src/map/if/ifTime.c')
-rw-r--r-- | src/map/if/ifTime.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/if/ifTime.c b/src/map/if/ifTime.c index e35ba0db..9647fd76 100644 --- a/src/map/if/ifTime.c +++ b/src/map/if/ifTime.c @@ -205,17 +205,17 @@ void If_CutPropagateRequired( If_Man_t * p, If_Obj_t * pObj, If_Cut_t * pCut, fl if ( p->pPars->fDelayOpt ) { int Delay = If_CutSopBalancePinDelays( p, pCut, pPerm ); - assert( Delay == pCut->Delay ); + assert( Delay == (int)pCut->Delay ); } else if ( p->pPars->fDelayOptLut ) { int Delay = If_CutLutBalancePinDelays( p, pCut, pPerm ); - assert( Delay == pCut->Delay ); + assert( Delay == (int)pCut->Delay ); } else if ( p->pPars->fDsdBalance ) { int Delay = If_CutDsdBalancePinDelays( p, pCut, pPerm ); - assert( Delay == pCut->Delay ); + assert( Delay == (int)pCut->Delay ); } else pPerm = pCut->pPerm; |