diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2013-10-30 13:45:00 -0400 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2013-10-30 13:45:00 -0400 |
commit | 2b85ef06e5490e4b1d8bdc450b13052fcd91a4d0 (patch) | |
tree | e988e465021bd844a286007dfa05524ed50a16e3 /src/map/if/ifDec16.c | |
parent | 80f46fa2ae6240c9439a8c01d806f922b625df48 (diff) | |
download | abc-2b85ef06e5490e4b1d8bdc450b13052fcd91a4d0.tar.gz abc-2b85ef06e5490e4b1d8bdc450b13052fcd91a4d0.tar.bz2 abc-2b85ef06e5490e4b1d8bdc450b13052fcd91a4d0.zip |
Compiler warnings.
Diffstat (limited to 'src/map/if/ifDec16.c')
-rw-r--r-- | src/map/if/ifDec16.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/if/ifDec16.c b/src/map/if/ifDec16.c index 762fecab..df98a916 100644 --- a/src/map/if/ifDec16.c +++ b/src/map/if/ifDec16.c @@ -2156,9 +2156,9 @@ float If_CutDelayLutStruct( If_Man_t * p, If_Cut_t * pCut, char * pStr, float Wi return ABC_INFINITY; // compute the delay - Delays[nLeaves] = If_CluDelayMax( &G1, Delays ) + (WireDelay == 0.0)?1.0:WireDelay; + Delays[nLeaves] = If_CluDelayMax( &G1, Delays ) + ((WireDelay == 0.0)?1.0:WireDelay); if ( G2.nVars ) - Delays[nLeaves+1] = If_CluDelayMax( &G2, Delays ) + (WireDelay == 0.0)?1.0:WireDelay; + Delays[nLeaves+1] = If_CluDelayMax( &G2, Delays ) + ((WireDelay == 0.0)?1.0:WireDelay); // mark used groups for ( i = 0; i < G1.nVars; i++ ) |