* removed "inline" directive from TGNUAssembler.WriteInstruction

because it triggers an internalerror when loading the nodetree
    for that method from the ppu file

git-svn-id: trunk@2880 -
This commit is contained in:
Jonas Maebe 2006-03-11 23:29:47 +00:00
parent 78cbcf8579
commit 693412e70c

View File

@ -50,7 +50,7 @@ interface
function sectionname(atype:TAsmSectiontype;const aname:string):string;virtual;
procedure WriteSection(atype:TAsmSectiontype;const aname:string);
procedure WriteExtraHeader;virtual;
procedure WriteInstruction(hp: tai);{$ifdef USEINLINE}inline;{$endif}
procedure WriteInstruction(hp: tai);
public
procedure WriteTree(p:TAAsmoutput);override;
procedure WriteAsmList;override;
@ -1000,7 +1000,7 @@ implementation
end;
procedure TGNUAssembler.WriteInstruction(hp: tai);{$ifdef USEINLINE}inline;{$endif}
procedure TGNUAssembler.WriteInstruction(hp: tai);
begin
InstrWriter.WriteInstruction(hp);
end;