mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-03 03:50:21 +02:00
* fixed Darwin/AArch64 flt/int-div-by-zero error codes (fix for 42045, as
noted by AlexeyT) git-svn-id: trunk@42064 -
This commit is contained in:
parent
cf9596421b
commit
ad6897ffd8
@ -23,8 +23,8 @@ begin
|
||||
SIGFPE :
|
||||
begin
|
||||
Case Info^.si_code Of
|
||||
FPE_FLTDIV : Res:=200; { floating point divide by zero }
|
||||
FPE_INTDIV : Res:=208; { integer divide by zero }
|
||||
FPE_FLTDIV : Res:=208; { floating point divide by zero }
|
||||
FPE_INTDIV : Res:=200; { integer divide by zero }
|
||||
FPE_FLTOVF : Res:=205; { floating point overflow }
|
||||
FPE_FLTUND : Res:=206; { floating point underflow }
|
||||
FPE_FLTRES, { floating point inexact result }
|
||||
|
Loading…
Reference in New Issue
Block a user