mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-13 12:59:15 +02:00
* Suppress Comaprison might be always false if first_mm_imreg is zero
git-svn-id: trunk@19584 -
This commit is contained in:
parent
97559ea92a
commit
b6de7f0d6b
@ -273,6 +273,10 @@ implementation
|
|||||||
TCGCALLNODE
|
TCGCALLNODE
|
||||||
*****************************************************************************}
|
*****************************************************************************}
|
||||||
|
|
||||||
|
{$if first_mm_imreg = 0}
|
||||||
|
{$WARN 4044 OFF} { Comparison might be always false ... }
|
||||||
|
{$endif}
|
||||||
|
|
||||||
procedure tcgcallnode.extra_interrupt_code;
|
procedure tcgcallnode.extra_interrupt_code;
|
||||||
begin
|
begin
|
||||||
end;
|
end;
|
||||||
|
@ -190,6 +190,9 @@ implementation
|
|||||||
{*****************************************************************************
|
{*****************************************************************************
|
||||||
Misc Helpers
|
Misc Helpers
|
||||||
*****************************************************************************}
|
*****************************************************************************}
|
||||||
|
{$if first_mm_imreg = 0}
|
||||||
|
{$WARN 4044 OFF} { Comparison might be always false ... }
|
||||||
|
{$endif}
|
||||||
|
|
||||||
procedure location_free(list: TAsmList; const location : TLocation);
|
procedure location_free(list: TAsmList; const location : TLocation);
|
||||||
begin
|
begin
|
||||||
|
@ -238,6 +238,9 @@ implementation
|
|||||||
result:=[];
|
result:=[];
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
{$if first_mm_imreg = 0}
|
||||||
|
{$WARN 4044 OFF} { Comparison might be always false ... }
|
||||||
|
{$endif}
|
||||||
|
|
||||||
procedure tparamanager.allocparaloc(list: TAsmList; const paraloc: pcgparalocation);
|
procedure tparamanager.allocparaloc(list: TAsmList; const paraloc: pcgparalocation);
|
||||||
begin
|
begin
|
||||||
@ -435,7 +438,7 @@ implementation
|
|||||||
p.init_paraloc_info(callbothsides);
|
p.init_paraloc_info(callbothsides);
|
||||||
result:=p.calleeargareasize;
|
result:=p.calleeargareasize;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
function tparamanager.parseparaloc(parasym: tparavarsym; const s: string): boolean;
|
function tparamanager.parseparaloc(parasym: tparavarsym; const s: string): boolean;
|
||||||
begin
|
begin
|
||||||
|
Loading…
Reference in New Issue
Block a user