mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-17 21:09:20 +02:00
* typing error in secondadd for mmx corrected
* USE_RHIDE sets usestderr to true replacing gpc by fpc in RHIDE should be a lot easier
This commit is contained in:
parent
04f1d1e292
commit
e8d49ccb86
@ -1036,7 +1036,7 @@
|
|||||||
mmxbase:=mmx_type(p^.left^.resulttype);
|
mmxbase:=mmx_type(p^.left^.resulttype);
|
||||||
case p^.treetype of
|
case p^.treetype of
|
||||||
addn : begin
|
addn : begin
|
||||||
if (cs_mmx_saturation in aktswitches^) then
|
if (cs_mmx_saturation in aktswitches) then
|
||||||
begin
|
begin
|
||||||
case mmxbase of
|
case mmxbase of
|
||||||
mmxs8bit:
|
mmxs8bit:
|
||||||
@ -1070,7 +1070,7 @@
|
|||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
subn : begin
|
subn : begin
|
||||||
if (cs_mmx_saturation in aktswitches^) then
|
if (cs_mmx_saturation in aktswitches) then
|
||||||
begin
|
begin
|
||||||
case mmxbase of
|
case mmxbase of
|
||||||
mmxs8bit:
|
mmxs8bit:
|
||||||
@ -1234,7 +1234,12 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.3 1998-04-08 11:34:22 peter
|
Revision 1.4 1998-04-21 15:22:45 pierre
|
||||||
|
* typing error in secondadd for mmx corrected
|
||||||
|
* USE_RHIDE sets usestderr to true
|
||||||
|
replacing gpc by fpc in RHIDE should be a lot easier
|
||||||
|
|
||||||
|
Revision 1.3 1998/04/08 11:34:22 peter
|
||||||
* nasm works (linux only tested)
|
* nasm works (linux only tested)
|
||||||
|
|
||||||
Revision 1.2 1998/03/28 23:09:55 florian
|
Revision 1.2 1998/03/28 23:09:55 florian
|
||||||
|
@ -41,11 +41,14 @@
|
|||||||
Required switches for a i386 compiler be compiled by Free Pascal Compiler:
|
Required switches for a i386 compiler be compiled by Free Pascal Compiler:
|
||||||
GDB;I386
|
GDB;I386
|
||||||
|
|
||||||
|
Required switches for a 68000 compiler be compiled by Free Pascal Compiler:
|
||||||
|
GDB;M68K
|
||||||
|
|
||||||
Required switches for a i386 compiler be compiled by Turbo Pascal:
|
Required switches for a i386 compiler be compiled by Turbo Pascal:
|
||||||
GDB;I386;TP
|
GDB;I386;TP
|
||||||
|
|
||||||
Required switches for a 68000 compiler be compiled by Turbo Pascal:
|
Required switches for a 68000 compiler be compiled by Turbo Pascal:
|
||||||
GDB;M68k;TP
|
GDB;M68K;TP
|
||||||
}
|
}
|
||||||
|
|
||||||
{$ifdef FPC}
|
{$ifdef FPC}
|
||||||
@ -373,7 +376,12 @@ begin
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.3 1998-04-21 10:16:48 peter
|
Revision 1.4 1998-04-21 15:22:46 pierre
|
||||||
|
* typing error in secondadd for mmx corrected
|
||||||
|
* USE_RHIDE sets usestderr to true
|
||||||
|
replacing gpc by fpc in RHIDE should be a lot easier
|
||||||
|
|
||||||
|
Revision 1.3 1998/04/21 10:16:48 peter
|
||||||
* patches from strasbourg
|
* patches from strasbourg
|
||||||
* objects is not used anymore in the fpc compiled version
|
* objects is not used anymore in the fpc compiled version
|
||||||
|
|
||||||
|
@ -215,6 +215,9 @@ end;
|
|||||||
{$endif}
|
{$endif}
|
||||||
|
|
||||||
begin
|
begin
|
||||||
|
{$ifdef USE_RHIDE}
|
||||||
|
UseStdErr:=true;
|
||||||
|
{$endif USE_RHIDE}
|
||||||
{$ifdef FPC}
|
{$ifdef FPC}
|
||||||
do_stop:=@_stop;
|
do_stop:=@_stop;
|
||||||
do_comment:=@_comment;
|
do_comment:=@_comment;
|
||||||
@ -239,7 +242,12 @@ begin
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.2 1998-03-28 23:09:57 florian
|
Revision 1.3 1998-04-21 15:22:46 pierre
|
||||||
|
* typing error in secondadd for mmx corrected
|
||||||
|
* USE_RHIDE sets usestderr to true
|
||||||
|
replacing gpc by fpc in RHIDE should be a lot easier
|
||||||
|
|
||||||
|
Revision 1.2 1998/03/28 23:09:57 florian
|
||||||
* secondin bugfix (m68k and i386)
|
* secondin bugfix (m68k and i386)
|
||||||
* overflow checking bugfix (m68k and i386) -- pretty useless in
|
* overflow checking bugfix (m68k and i386) -- pretty useless in
|
||||||
secondadd, since everything is done using 32-bit
|
secondadd, since everything is done using 32-bit
|
||||||
|
Loading…
Reference in New Issue
Block a user