19991014-18:17 GMT+1
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
19991014-18:17 GMT+1 Victor Szel <info@szelvesz.hu>
|
||||
* source/compiler/genc.c
|
||||
! Fixed pcode generation with /gc0 switch for MODULENAME opcode.
|
||||
There was an incrementation operator embedded in an expression, which
|
||||
was not executed in this case.
|
||||
|
||||
19991014-18:13 GMT+1 Bruno Cantero <bruno@issnet.net>
|
||||
|
||||
* source/rdd/dbcmd.c
|
||||
|
||||
@@ -439,8 +439,9 @@ void GenCCode( PHB_FNAME pFileName ) /* generates the C language output */
|
||||
|
||||
case HB_P_MODULENAME:
|
||||
fprintf( yyc, "\tHB_P_MODULENAME," );
|
||||
if( _bGenCVerbose ) fprintf( yyc, "\t/* %s */", ( char * ) pFunc->pCode + lPCodePos++ + 1 );
|
||||
if( _bGenCVerbose ) fprintf( yyc, "\t/* %s */", ( char * ) pFunc->pCode + lPCodePos + 1 );
|
||||
fprintf( yyc, "\n" );
|
||||
lPCodePos++;
|
||||
while( pFunc->pCode[ lPCodePos ] )
|
||||
{
|
||||
chr = pFunc->pCode[ lPCodePos++ ];
|
||||
|
||||
Reference in New Issue
Block a user