- removed duplicate thlcg2ll a_label method (it's declared the same in

thlcgobj and not virtual in either class)

git-svn-id: trunk@26022 -
This commit is contained in:
Jonas Maebe 2013-11-10 21:32:39 +00:00
parent 8cdde466bb
commit 1b6e4e572f

View File

@ -78,9 +78,6 @@ unit hlcg2ll;
procedure do_register_allocation(list:TAsmList;headertai:tai); inline;
procedure translate_register(var reg : tregister); inline;
{# Emit a label to the instruction stream. }
procedure a_label(list : TAsmList;l : tasmlabel); inline;
{# Allocates register r by inserting a pai_realloc record }
procedure a_reg_alloc(list : TAsmList;r : tregister); inline;
{# Deallocates register r by inserting a pa_regdealloc record}
@ -414,11 +411,6 @@ implementation
cg.translate_register(reg);
end;
procedure thlcg2ll.a_label(list: TAsmList; l: tasmlabel); inline;
begin
cg.a_label(list,l);
end;
procedure thlcg2ll.a_reg_alloc(list: TAsmList; r: tregister);
begin
cg.a_reg_alloc(list,r);