From 71bdfae94122fff6f245c47721d284f78c286164 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Sat, 29 Sep 2012 17:11:03 -0400 Subject: Replacing 'st_table' by 'st__table' to resolve linker problems. --- src/map/mapper/mapperTree.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/map/mapper/mapperTree.c') diff --git a/src/map/mapper/mapperTree.c b/src/map/mapper/mapperTree.c index 62d11c53..9bf74ff2 100644 --- a/src/map/mapper/mapperTree.c +++ b/src/map/mapper/mapperTree.c @@ -265,7 +265,7 @@ int Map_LibraryReadTree2( Map_SuperLib_t * pLib, char * pFileName, char * pExclu FILE * pFile; int Status, num; Abc_Frame_t * pAbc; - st_table * tExcludeGate = 0; + st__table * tExcludeGate = 0; // read the beginning of the file assert( pLib->pGenlib == NULL ); @@ -281,10 +281,10 @@ int Map_LibraryReadTree2( Map_SuperLib_t * pLib, char * pFileName, char * pExclu { pAbc = Abc_FrameGetGlobalFrame(); - tExcludeGate = st_init_table(strcmp, st_strhash); + tExcludeGate = st__init_table(strcmp, st__strhash); if ( (num = Mio_LibraryReadExclude( pExcludeFile, tExcludeGate )) == -1 ) { - st_free_table( tExcludeGate ); + st__free_table( tExcludeGate ); tExcludeGate = 0; return 0; } @@ -525,7 +525,7 @@ int Map_LibraryReadTree( Map_SuperLib_t * pLib, char * pFileName, char * pExclud Vec_Str_t * vStr; int Status, num; Abc_Frame_t * pAbc; - st_table * tExcludeGate = 0; + st__table * tExcludeGate = 0; // read the beginning of the file assert( pLib->pGenlib == NULL ); @@ -542,10 +542,10 @@ int Map_LibraryReadTree( Map_SuperLib_t * pLib, char * pFileName, char * pExclud { pAbc = Abc_FrameGetGlobalFrame(); - tExcludeGate = st_init_table(strcmp, st_strhash); + tExcludeGate = st__init_table(strcmp, st__strhash); if ( (num = Mio_LibraryReadExclude( pExcludeFile, tExcludeGate )) == -1 ) { - st_free_table( tExcludeGate ); + st__free_table( tExcludeGate ); tExcludeGate = 0; Vec_StrFree( vStr ); return 0; @@ -580,7 +580,7 @@ int Map_LibraryReadTree( Map_SuperLib_t * pLib, char * pFileName, char * pExclud SeeAlso [] ***********************************************************************/ -int Map_LibraryDeriveGateInfo( Map_SuperLib_t * pLib, st_table * tExcludeGate ) +int Map_LibraryDeriveGateInfo( Map_SuperLib_t * pLib, st__table * tExcludeGate ) { Map_Super_t * pGate, * pFanin; Mio_Pin_t * pPin; @@ -595,7 +595,7 @@ int Map_LibraryDeriveGateInfo( Map_SuperLib_t * pLib, st_table * tExcludeGate ) if ( tExcludeGate ) { - if ( st_is_member( tExcludeGate, Mio_GateReadName( pGate->pRoot ) ) ) + if ( st__is_member( tExcludeGate, Mio_GateReadName( pGate->pRoot ) ) ) pGate->fExclude = 1; for ( k = 0; k < (int)pGate->nFanins; k++ ) { -- cgit v1.2.3