Commit 9b6efa34 by Alan Mishchenko

Bug fix in 'write_pla'.

parent 45d82477
...@@ -378,7 +378,7 @@ void Io_Write( Abc_Ntk_t * pNtk, char * pFileName, Io_FileType_t FileType ) ...@@ -378,7 +378,7 @@ void Io_Write( Abc_Ntk_t * pNtk, char * pFileName, Io_FileType_t FileType )
pNtkTemp = Abc_NtkToNetlist( pNtk ); pNtkTemp = Abc_NtkToNetlist( pNtk );
Abc_NtkDelete( pNtkCopy ); Abc_NtkDelete( pNtkCopy );
} }
if ( !Abc_NtkToSop( pNtk, 1 ) ) if ( !Abc_NtkToSop( pNtkTemp, 1 ) )
return; return;
} }
else if ( FileType == IO_FILE_BENCH ) else if ( FileType == IO_FILE_BENCH )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment