mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-17 03:59:13 +02:00
* declare fpu in rtl for m68k linux
This commit is contained in:
parent
e7c86006db
commit
121f1a09a0
@ -1438,6 +1438,9 @@ begin
|
|||||||
if option.DoWriteLogo then
|
if option.DoWriteLogo then
|
||||||
option.WriteLogo;
|
option.WriteLogo;
|
||||||
|
|
||||||
|
if (target_info.target=target_m68k_linux) then
|
||||||
|
def_symbol('USE_FPU_IN_RTL');
|
||||||
|
|
||||||
{ Check file to compile }
|
{ Check file to compile }
|
||||||
if param_file='' then
|
if param_file='' then
|
||||||
begin
|
begin
|
||||||
@ -1563,7 +1566,10 @@ finalization
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.49 2001-07-09 21:15:40 peter
|
Revision 1.50 2001-07-30 21:39:26 peter
|
||||||
|
* declare fpu in rtl for m68k linux
|
||||||
|
|
||||||
|
Revision 1.49 2001/07/09 21:15:40 peter
|
||||||
* Length made internal
|
* Length made internal
|
||||||
* Add array support for Length
|
* Add array support for Length
|
||||||
|
|
||||||
|
@ -683,6 +683,7 @@ implementation
|
|||||||
consume(_LKLAMMER);
|
consume(_LKLAMMER);
|
||||||
aktpos:=0;
|
aktpos:=0;
|
||||||
srsym := tsym(trecorddef(t.def).symtable.symindex.first);
|
srsym := tsym(trecorddef(t.def).symtable.symindex.first);
|
||||||
|
recsym := nil;
|
||||||
while token<>_RKLAMMER do
|
while token<>_RKLAMMER do
|
||||||
begin
|
begin
|
||||||
s:=pattern;
|
s:=pattern;
|
||||||
@ -764,7 +765,8 @@ implementation
|
|||||||
if assigned(srsym) and
|
if assigned(srsym) and
|
||||||
{ don't complain if there only come other variant parts }
|
{ don't complain if there only come other variant parts }
|
||||||
{ after the last initialized field }
|
{ after the last initialized field }
|
||||||
(tvarsym(srsym).address > tvarsym(recsym).address) then
|
((recsym=nil) or
|
||||||
|
(tvarsym(srsym).address > tvarsym(recsym).address)) then
|
||||||
Message1(parser_h_skipped_fields_after,s);
|
Message1(parser_h_skipped_fields_after,s);
|
||||||
|
|
||||||
for i:=1 to t.def.size-aktpos do
|
for i:=1 to t.def.size-aktpos do
|
||||||
@ -889,7 +891,10 @@ implementation
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.28 2001-07-30 20:59:27 peter
|
Revision 1.29 2001-07-30 21:39:26 peter
|
||||||
|
* declare fpu in rtl for m68k linux
|
||||||
|
|
||||||
|
Revision 1.28 2001/07/30 20:59:27 peter
|
||||||
* m68k updates from v10 merged
|
* m68k updates from v10 merged
|
||||||
|
|
||||||
Revision 1.27 2001/07/08 21:00:15 peter
|
Revision 1.27 2001/07/08 21:00:15 peter
|
||||||
|
Loading…
Reference in New Issue
Block a user