I am debugging some C code with gdb. My program has a variable of type mpz_t * retval
. If I run the command
print *retval
I get the output
$23 = {{
_mp_alloc = 6,
_mp_size = 5,
_mp_d = 0x1001008d0
}}
Is there anything else I can do to get more information about the value stored in retval
?