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
Like for >64-bit integers (see #170), we support creating drgn.Type and reference or absent drgn.Object instances for non-32-/64-bit floats, but we don't support values. Unlike for integers, I don't know if there's a common arbitrary precision floating-point library we can use.
The text was updated successfully, but these errors were encountered:
long double
is 80 bits on x86/x86-64. GCC also supports_Float128
on some platforms: https://gcc.gnu.org/onlinedocs/gcc/Floating-Types.html. GCC and Clang also seem to support_Float16
.Like for >64-bit integers (see #170), we support creating
drgn.Type
and reference or absentdrgn.Object
instances for non-32-/64-bit floats, but we don't support values. Unlike for integers, I don't know if there's a common arbitrary precision floating-point library we can use.The text was updated successfully, but these errors were encountered: