On Wed, 15 Aug 2012, Diego Novillo wrote: > On 12-08-15 07:59 , Richard Guenther wrote: > > > (gdb) call debug_tree (*expr_p) > > <integer_cst 0x7ffff695d7c0 type <integer_type 0x7ffff67fa5e8 int> > > constant 9> > > (gdb) call debug_tree (0x7ffff67fa5e8) > > Cannot resolve function debug_tree to any overloaded instance > > Yeah, in the absence of overloads this is annoying. Happens with 0, too.
0 is fixed if you have recent enough gdb. (gdb) call debug_tree (0) as 0 is a null pointer constant. Richard.