diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2019-03-04 14:29:57 -0800 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2019-03-04 14:29:57 -0800 |
commit | bc288a76332b1684b0183084aee0a4f46c617b62 (patch) | |
tree | dd8054d1408836d7e1bdc51eb6b2af2fb351eb70 /src/opt/sim/simSupp.c | |
parent | 9842e82326b8e0a6605460888ae56757cb9a9a0f (diff) | |
download | abc-bc288a76332b1684b0183084aee0a4f46c617b62.tar.gz abc-bc288a76332b1684b0183084aee0a4f46c617b62.tar.bz2 abc-bc288a76332b1684b0183084aee0a4f46c617b62.zip |
Suggested white-space changes for fewer gcc warnings.
Diffstat (limited to 'src/opt/sim/simSupp.c')
-rw-r--r-- | src/opt/sim/simSupp.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/opt/sim/simSupp.c b/src/opt/sim/simSupp.c index 5def7dae..a87ac0f1 100644 --- a/src/opt/sim/simSupp.c +++ b/src/opt/sim/simSupp.c @@ -118,8 +118,8 @@ Vec_Ptr_t * Sim_ComputeFunSupp( Abc_Ntk_t * pNtk, int fVerbose ) // set the support targets Sim_ComputeSuppSetTargets( p ); -if ( fVerbose ) - printf( "Number of support targets after simulation = %5d.\n", Vec_VecSizeSize(p->vSuppTargs) ); + if ( fVerbose ) + printf( "Number of support targets after simulation = %5d.\n", Vec_VecSizeSize(p->vSuppTargs) ); if ( Vec_VecSizeSize(p->vSuppTargs) == 0 ) goto exit; @@ -131,9 +131,9 @@ if ( fVerbose ) if ( Vec_VecSizeSize(p->vSuppTargs) == 0 ) goto exit; -if ( fVerbose ) - printf( "Targets = %5d. Solved = %5d. Fifo = %5d.\n", - Vec_VecSizeSize(p->vSuppTargs), nSolved, Vec_PtrSize(p->vFifo) ); + if ( fVerbose ) + printf( "Targets = %5d. Solved = %5d. Fifo = %5d.\n", + Vec_VecSizeSize(p->vSuppTargs), nSolved, Vec_PtrSize(p->vFifo) ); } // try to solve the support targets |