summaryrefslogtreecommitdiffstats
path: root/src/base/abci/abcFpga.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2008-02-22 08:01:00 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2008-02-22 08:01:00 -0800
commit7d23cc522e416ae1f3d2d53292ef438d1a08b0d7 (patch)
tree5f59908955de0cc52217c159db6c9c5688c959d8 /src/base/abci/abcFpga.c
parentbd995ee2ca86bcb488d2e9592012b6077a6283f6 (diff)
downloadabc-7d23cc522e416ae1f3d2d53292ef438d1a08b0d7.tar.gz
abc-7d23cc522e416ae1f3d2d53292ef438d1a08b0d7.tar.bz2
abc-7d23cc522e416ae1f3d2d53292ef438d1a08b0d7.zip
Version abc80222
Diffstat (limited to 'src/base/abci/abcFpga.c')
-rw-r--r--src/base/abci/abcFpga.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/base/abci/abcFpga.c b/src/base/abci/abcFpga.c
index 3bc9fbed..9cc4e2c6 100644
--- a/src/base/abci/abcFpga.c
+++ b/src/base/abci/abcFpga.c
@@ -51,12 +51,13 @@ Abc_Ntk_t * Abc_NtkFpga( Abc_Ntk_t * pNtk, float DelayTarget, int fRecovery, int
Fpga_Man_t * pMan;
Vec_Int_t * vSwitching;
float * pSwitching = NULL;
+ int Num;
assert( Abc_NtkIsStrash(pNtk) );
// print a warning about choice nodes
- if ( Abc_NtkGetChoiceNum( pNtk ) )
- printf( "Performing FPGA mapping with choices.\n" );
+ if ( (Num = Abc_NtkGetChoiceNum( pNtk )) )
+ printf( "Performing LUT mapping with %d choices.\n", Num );
// compute switching activity
fShowSwitching |= fSwitching;