See ChangeLog entry 19990601-12:00 EDT David G. Holm <dholm@jsd-llc.com>
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user