* Changed two variables from Integer to Longint. Integer is 16 bits when compiling System unit, using it results in less optimal code on most targets.

git-svn-id: trunk@23494 -
This commit is contained in:
sergei 2013-01-22 15:07:22 +00:00
parent 6788fd6433
commit 6a86d0d83a

View File

@ -50,7 +50,7 @@ end;
procedure init_all_unit_threadvars;
var
i : integer;
i : longint;
begin
{$ifdef FPC_HAS_INDIRECT_MAIN_INFORMATION}
with PltvInitTablesTable(EntryInformation.ThreadvarTablesTable)^ do
@ -84,7 +84,7 @@ end;
procedure copy_all_unit_threadvars;
var
i : integer;
i: longint;
begin
{$ifdef FPC_HAS_INDIRECT_MAIN_INFORMATION}
with PltvInitTablesTable(EntryInformation.ThreadvarTablesTable)^ do