mirror of https://github.com/YosysHQ/abc.git
Small bug in the unused code.
This commit is contained in:
parent
623b5e8251
commit
3b4e9573bc
|
|
@ -730,7 +730,7 @@ Vec_Str_t * Scl_LibertyReadGenlibStr( Scl_Tree_t * p, int fVerbose )
|
|||
// iterate through output pins
|
||||
Scl_ItemForEachChildName( p, pCell, pOutput, "pin" )
|
||||
{
|
||||
if ( (pFormula = Scl_LibertyReadPinFormula(p, pOutput)) )
|
||||
if ( !(pFormula = Scl_LibertyReadPinFormula(p, pOutput)) )
|
||||
continue;
|
||||
if ( !strcmp(pFormula, "0") || !strcmp(pFormula, "1") )
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue