mirror of https://github.com/YosysHQ/abc.git
Fixing a memory corruption problem accidentally introduced by fixing memory leaks on Sep 28.
This commit is contained in:
parent
48f71adacd
commit
0e5af861e0
|
|
@ -165,7 +165,7 @@ Gia_Man_t * Gia_ManAigSyn3( Gia_Man_t * p, int fVerbose, int fVeryVerbose )
|
|||
{
|
||||
pNew = Gia_ManDup(p);
|
||||
Gia_ManTransferTiming( pNew, p );
|
||||
Gia_ManStop( p );
|
||||
//Gia_ManStop( p );
|
||||
return pNew;
|
||||
}
|
||||
// perform balancing
|
||||
|
|
@ -202,7 +202,7 @@ Gia_Man_t * Gia_ManAigSyn4( Gia_Man_t * p, int fVerbose, int fVeryVerbose )
|
|||
{
|
||||
pNew = Gia_ManDup(p);
|
||||
Gia_ManTransferTiming( pNew, p );
|
||||
Gia_ManStop( p );
|
||||
//Gia_ManStop( p );
|
||||
return pNew;
|
||||
}
|
||||
//Gia_ManAigPrintPiLevels( p );
|
||||
|
|
|
|||
Loading…
Reference in New Issue