This is the mail archive of the
gdb@sources.redhat.com
mailing list for the GDB project.
Re: Formatting of function pointer value
- From: Vladimir Prus <ghost at cs dot msu dot su>
- To: gdb at sources dot redhat dot com
- Date: Fri, 08 Jul 2005 12:50:48 +0400
- Subject: Re: Formatting of function pointer value
- References: <dalbrd$tn0$1@sea.gmane.org>
Vladimir Prus wrote:
> the value of *p3 is printed like this:
>
> (gdb) print *p3
> $1 = {int (int)} 0xb7ee6e9c <__DTOR_END__+4>
Even more strange is this:
(gdb) print p3
$2 = (int (*)(int)) 0xb7ee6e9c <__DTOR_END__+4>
(gdb) print *p3
$3 = {int (int)} 0xb7ee6e9c <__DTOR_END__+4>
Why does formatting of the type different in the second case, and uses
braces instead of parenthesis?
- VOlodya