mirror of https://github.com/YosysHQ/abc.git
Fix parsing tab symbol in Liberty files.
This commit is contained in:
parent
813db6e74d
commit
464fda3fa5
|
|
@ -596,7 +596,7 @@ static inline int Amap_LibertySkipEntry( char ** ppPos, char * pEnd )
|
|||
else
|
||||
{
|
||||
for ( ; pPos < pEnd; pPos++ )
|
||||
if ( *pPos == ' ' || *pPos == '\r' || *pPos == '\n' ||
|
||||
if ( *pPos == ' ' || *pPos == '\r' || *pPos == '\n' || *pPos == '\t' ||
|
||||
*pPos == ':' || *pPos == ';' ||
|
||||
*pPos == '(' || *pPos == ')' ||
|
||||
*pPos == '{' || *pPos == '}' )
|
||||
|
|
|
|||
Loading…
Reference in New Issue