See ChangeLog entry 19990601-12:00 EDT David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
1999-06-01 17:07:15 +00:00
parent 2eb512867d
commit 8cf924a706
3 changed files with 12 additions and 2 deletions

View File

@@ -1,3 +1,11 @@
19990601-12:00 EDT David G. Holm <dholm@jsd-llc.com>
* makefile.b31
- Ran into problems using GT API with tests\working\mathtest, so removed
USE_GTAPI from default use.
* source/compiler/harbour.y
- Added missing third parameter (a copy of the first one) to the comment
section of the generated C pcode for _PUSHDOUBLE.
19990601-12:15 CET Eddie Runia
* tests/working/inifiles.prg
new Mab version installed

View File

@@ -10,7 +10,8 @@
.path.obj = obj
.path.prg = source\rtl
c_opt = -mh -O2 -I.\include -DUSE_GTAPI
#c_opt = -mh -O2 -I.\include -DUSE_GTAPI
c_opt = -mh -O2 -I.\include
PROJECT: harbour.lib hbtools.lib terminal.lib libs\win16\terminal.lib harbour.exe

View File

@@ -2221,7 +2221,8 @@ void GenCCode( char *szFileName, char *szName ) /* generates the C languag
fprintf( yyc, "%i, ", ( ( BYTE * ) pFunc->pCode )[ lPCodePos + i ] );
fprintf( yyc, "/* %.*f, %d */\n",
*( ( BYTE * ) &( pFunc->pCode[ lPCodePos + sizeof( double ) ] ) ),
*( ( double * ) &( pFunc->pCode[ lPCodePos ] ) ) );
*( ( double * ) &( pFunc->pCode[ lPCodePos ] ) ),
*( ( BYTE * ) &( pFunc->pCode[ lPCodePos + sizeof( double ) ] ) ) );
lPCodePos += sizeof( double ) + sizeof( BYTE );
}
break;