Allways use local pt variable to ameliorate readability of code

git-svn-id: trunk@42082 -
This commit is contained in:
pierre 2019-05-16 08:24:45 +00:00
parent c8129c5228
commit 902ef73c7c

View File

@ -949,23 +949,16 @@ var
procedure fpc_InitializeUnits;[public,alias:'FPC_INITIALIZEUNITS']; compilerproc;
var
i : ALUUInt;
{$ifdef DEBUG}
pt : PInitFinalTable;
{$endif}
begin
{ call cpu/fpu initialisation routine }
fpc_cpuinit;
{$ifdef FPC_HAS_INDIRECT_ENTRY_INFORMATION}
{$ifdef DEBUG}
pt := PInitFinalTable(EntryInformation.InitFinalTable);
{$endif}
with PInitFinalTable(EntryInformation.InitFinalTable)^ do
{$else FPC_HAS_INDIRECT_ENTRY_INFORMATION}
{$ifdef DEBUG}
pt := @InitFinalTable;
{$endif}
with InitFinalTable do
{$endif FPC_HAS_INDIRECT_ENTRY_INFORMATION}
with pt^ do
begin
for i:=1 to ALUUInt(TableCount) do
begin