mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-22 22:49:37 +02:00
* 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:
parent
a2dbc4d272
commit
cb23a80178
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user