mirror of
https://github.com/YosysHQ/abc.git
synced 2026-09-02 02:37:25 +02:00
Fix parsing tab symbol in Liberty files.
This commit is contained in:
@@ -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 == '}' )
|
||||
|
||||
Reference in New Issue
Block a user