* fixed fpu rte code for invalid, inexact and "subscript out of range"

errors (216 -> 207) (same as for sparc/solaris in r7453)

git-svn-id: trunk@7477 -
This commit is contained in:
Jonas Maebe 2007-05-25 19:22:28 +00:00
parent a2dbc4d272
commit cb23a80178

View File

@ -26,7 +26,6 @@ begin
SIGFPE :
begin
addr := siginfo^._sifields._sigfault._addr;
res := 207;
case siginfo^.si_code of
FPE_INTDIV:
res:=200;
@ -38,10 +37,6 @@ begin
res:=205;
FPE_FLTUND:
res:=206;
FPE_FLTRES,
FPE_FLTINV,
FPE_FLTSUB:
res:=216;
else
res:=207;
end;