- removed "Set8087CW(Default8087CW)" call from SysEntry:

o it is already performed in fpc_cpucodeinit
   o in libraries, fpc_cpucodeinit first sets Default8087CW to the current x87
     control word to avoid them enabling fpu exceptions if the host platform
     had first disabled them

git-svn-id: trunk@33993 -
This commit is contained in:
Jonas Maebe 2016-06-15 18:32:07 +00:00
parent 899add8c7d
commit 11c90a73b1

View File

@ -315,9 +315,6 @@ end;
procedure SysEntry(constref info: TEntryInformation);[public,alias:'FPC_SysEntry'];
begin
SetupEntryInformation(info);
{$ifdef cpui386}
Set8087CW(Default8087CW);
{$endif cpui386}
info.PascalMain();
end;