mirror of https://github.com/YosysHQ/abc.git
Compiler problem.
This commit is contained in:
parent
09013f3a6e
commit
57cc2bd089
|
|
@ -51592,6 +51592,8 @@ int Abc_CommandAbc9GenHie( Abc_Frame_t * pAbc, int argc, char ** argv )
|
||||||
{
|
{
|
||||||
extern void Gia_GenSandwich( char ** pFNames, int nFNames );
|
extern void Gia_GenSandwich( char ** pFNames, int nFNames );
|
||||||
int c, fVerbose = 0;
|
int c, fVerbose = 0;
|
||||||
|
char ** pArgvNew;
|
||||||
|
int nArgcNew;
|
||||||
Extra_UtilGetoptReset();
|
Extra_UtilGetoptReset();
|
||||||
while ( ( c = Extra_UtilGetopt( argc, argv, "vh" ) ) != EOF )
|
while ( ( c = Extra_UtilGetopt( argc, argv, "vh" ) ) != EOF )
|
||||||
{
|
{
|
||||||
|
|
@ -51606,8 +51608,8 @@ int Abc_CommandAbc9GenHie( Abc_Frame_t * pAbc, int argc, char ** argv )
|
||||||
goto usage;
|
goto usage;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
char ** pArgvNew = argv + globalUtilOptind;
|
pArgvNew = argv + globalUtilOptind;
|
||||||
int nArgcNew = argc - globalUtilOptind;
|
nArgcNew = argc - globalUtilOptind;
|
||||||
Gia_GenSandwich( pArgvNew, nArgcNew );
|
Gia_GenSandwich( pArgvNew, nArgcNew );
|
||||||
return 0;
|
return 0;
|
||||||
usage:
|
usage:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue