Commit d32e5140 by Alan Mishchenko

Buf fix in Liberty parser.

parent 080a7420
...@@ -1210,7 +1210,7 @@ Vec_Str_t * Scl_LibertyReadSclStr( Scl_Tree_t * p, int fVerbose, int fVeryVerbos ...@@ -1210,7 +1210,7 @@ Vec_Str_t * Scl_LibertyReadSclStr( Scl_Tree_t * p, int fVerbose, int fVeryVerbos
continue; continue;
// top level information // top level information
Vec_StrPutS_( vOut, Scl_LibertyReadString(p, pCell->Head) ); Vec_StrPutS_( vOut, Scl_LibertyReadString(p, pCell->Head) );
Vec_StrPutF_( vOut, atof(Scl_LibertyReadCellArea(p, pCell)) ); Vec_StrPutF_( vOut, Scl_LibertyReadCellArea(p, pCell) ? atof(Scl_LibertyReadCellArea(p, pCell)) : 1 );
Vec_StrPutI_( vOut, Scl_LibertyReadDeriveStrength(p, pCell) ); Vec_StrPutI_( vOut, Scl_LibertyReadDeriveStrength(p, pCell) );
// pin count // pin count
nOutputs = Scl_LibertyReadCellOutputNum( p, pCell ); nOutputs = Scl_LibertyReadCellOutputNum( p, pCell );
......
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