* Fixed warnings about hiding inherited method.

git-svn-id: trunk@11449 -
This commit is contained in:
yury 2008-07-23 11:51:19 +00:00
parent bf454fad71
commit a039dd6942
3 changed files with 67 additions and 67 deletions

View File

@ -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;

View File

@ -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 }

View File

@ -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)