diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2022-02-02 21:39:36 -0800 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2022-02-02 21:39:36 -0800 |
commit | faa59472783121b7b8c7e4bd4c361a7f5aaf71ab (patch) | |
tree | 09ed4d8a302cd20e581cfd9b9e33c1b5f539bf25 /src | |
parent | a6f8625d64e26087b24f9d86b7e7181a05884fda (diff) | |
download | abc-faa59472783121b7b8c7e4bd4c361a7f5aaf71ab.tar.gz abc-faa59472783121b7b8c7e4bd4c361a7f5aaf71ab.tar.bz2 abc-faa59472783121b7b8c7e4bd4c361a7f5aaf71ab.zip |
Compiler warnings.
Diffstat (limited to 'src')
-rw-r--r-- | src/base/wln/wlnRead.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/wln/wlnRead.c b/src/base/wln/wlnRead.c index b58c2516..62cb70c6 100644 --- a/src/base/wln/wlnRead.c +++ b/src/base/wln/wlnRead.c @@ -1420,7 +1420,7 @@ int Rtl_NtkMapWireRange( Rtl_Ntk_t * p, int NameId, int Left, int Right, int iCe //char * pName = Rtl_NtkStr( p, NameId ); int Wire = Rtl_WireMapNameToId( p, NameId ); int First = Rtl_WireBitStart( p, Wire ); - int Width = Rtl_WireWidth( p, Wire ), i, k = 0; + int Width = Rtl_WireWidth( p, Wire ), i; Left = Left == -1 ? Width-1 : Left; Right = Right == -1 ? 0 : Right; assert ( Right >= 0 && Right <= Left ); @@ -1866,7 +1866,7 @@ int Rtl_NtkBlastCons( Rtl_Ntk_t * p ) } void Rtl_NtkBlastMap( Rtl_Ntk_t * p, int nBits ) { - int i, k, Par, Val, * pCell, iBit = 0, fChange = 1; + int i, k, Par, Val, * pCell, iBit = 0; Vec_IntFill( &p->vDrivers, 2*nBits, -4 ); for ( i = 0; i < p->nInputs; i++ ) { |