19991014-18:17 GMT+1

This commit is contained in:
Viktor Szakats
1999-10-14 16:28:52 +00:00
parent c90f32cac8
commit 33a4b8ab19
2 changed files with 8 additions and 1 deletions

View File

@@ -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

View File

@@ -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++ ];