mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-15 12:10:14 +02:00
* Fixed warnings about hiding inherited method.
git-svn-id: trunk@11449 -
This commit is contained in:
parent
bf454fad71
commit
a039dd6942
@ -35,7 +35,7 @@ Unit aopt;
|
||||
TAsmOptimizer = class(TAoptObj)
|
||||
|
||||
{ _AsmL is the PAasmOutpout list that has to be optimized }
|
||||
Constructor create(_AsmL: TAsmList); virtual;
|
||||
Constructor create(_AsmL: TAsmList); virtual; reintroduce;
|
||||
|
||||
{ call the necessary optimizer procedures }
|
||||
Procedure Optimize;
|
||||
|
@ -106,7 +106,7 @@ unit cgcpu;
|
||||
function handle_load_store(list:TAsmList;op: tasmop;oppostfix : toppostfix;reg:tregister;ref: treference):treference;
|
||||
|
||||
procedure g_intf_wrapper(list: TAsmList; procdef: tprocdef; const labelname: string; ioffset: longint);override;
|
||||
procedure g_adjust_self_value(list:TAsmList;procdef: tprocdef;ioffset: aint);
|
||||
procedure g_adjust_self_value(list:TAsmList;procdef: tprocdef;ioffset: aint); override;
|
||||
private
|
||||
{ clear out potential overflow bits from 8 or 16 bit operations }
|
||||
{ the upper 24/16 bits of a register after an operation }
|
||||
|
@ -34,7 +34,7 @@ uses
|
||||
TrefItem = class (TLinkedListItem)
|
||||
refinfo : tfileposinfo;
|
||||
constructor create(const ARefInfo : tfileposinfo);
|
||||
Function GetCopy:TLinkedListItem;virtual;
|
||||
Function GetCopy:TLinkedListItem;virtual;reintroduce;
|
||||
end;
|
||||
|
||||
TRefLinkedList = class(TLinkedList)
|
||||
|
Loading…
Reference in New Issue
Block a user