mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 13:59:28 +02:00
* aint -> asizeint changes
git-svn-id: trunk@17018 -
This commit is contained in:
parent
fcd3872d88
commit
5abdfb6f7e
@ -401,9 +401,9 @@ interface
|
||||
tai_datablock = class(tailineinfo)
|
||||
is_global : boolean;
|
||||
sym : tasmsymbol;
|
||||
size : aint;
|
||||
size : asizeint;
|
||||
constructor Create(const _name : string;_size : aint);
|
||||
constructor Create_global(const _name : string;_size : aint);
|
||||
constructor Create_global(const _name : string;_size : asizeint);
|
||||
constructor ppuload(t:taitype;ppufile:tcompilerppufile);override;
|
||||
procedure ppuwrite(ppufile:tcompilerppufile);override;
|
||||
procedure derefimpl;override;
|
||||
@ -883,7 +883,7 @@ implementation
|
||||
end;
|
||||
|
||||
|
||||
constructor tai_datablock.Create_global(const _name : string;_size : aint);
|
||||
constructor tai_datablock.Create_global(const _name : string;_size : asizeint);
|
||||
begin
|
||||
inherited Create;
|
||||
typ:=ait_datablock;
|
||||
|
@ -2448,7 +2448,7 @@ implementation
|
||||
|
||||
procedure insertbssdata(sym : tstaticvarsym);
|
||||
var
|
||||
l : aint;
|
||||
l : asizeint;
|
||||
varalign : shortint;
|
||||
storefilepos : tfileposinfo;
|
||||
list : TAsmList;
|
||||
|
@ -171,7 +171,7 @@ implementation
|
||||
threc = record
|
||||
list : tasmlist;
|
||||
origsym: tstaticvarsym;
|
||||
offset: aint;
|
||||
offset: asizeint;
|
||||
end;
|
||||
|
||||
{ this procedure reads typed constants }
|
||||
|
Loading…
Reference in New Issue
Block a user