You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mach/arm/exception.h defines codes for EXC_ARITHMETIC
#defineEXC_ARM_FP_UNDEFINED 0 /* Undefined Floating Point Exception */#defineEXC_ARM_FP_IO 1 /* Invalid Floating Point Operation */#defineEXC_ARM_FP_DZ 2 /* Floating Point Divide by Zero */#defineEXC_ARM_FP_OF 3 /* Floating Point Overflow */#defineEXC_ARM_FP_UF 4 /* Floating Point Underflow */#defineEXC_ARM_FP_IX 5 /* Inexact Floating Point Result */#defineEXC_ARM_FP_ID 6 /* Floating Point Denormal Input */
We use these codes to improve the generic exception message
Description
mach/arm/exception.h defines codes for EXC_ARITHMETIC
We use these codes to improve the generic exception message
sentry-cocoa/Sources/SentryCrash/Recording/SentryCrashDoctor.m
Lines 445 to 447 in ecd9ecd
We could achieve this by getting a better machCodeName here
sentry-cocoa/Sources/SentryCrash/Recording/SentryCrashReport.c
Lines 1278 to 1281 in ecd9ecd
or here
sentry-cocoa/Sources/SentryCrash/Recording/SentryCrashDoctor.m
Lines 300 to 310 in ecd9ecd
Came up in #2662.
The text was updated successfully, but these errors were encountered: