mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 12:23:31 +08:00
Tue Aug 18 15:42:40 1998 Martin M. Hunt <hunt@cygnus.com>
* gdbtk-cmds.c (gdb_listfuncs): Strip out global constructors and destructors from the function list.
This commit is contained in:
@ -1,3 +1,8 @@
|
||||
Tue Aug 18 15:42:40 1998 Martin M. Hunt <hunt@cygnus.com>
|
||||
|
||||
* gdbtk-cmds.c (gdb_listfuncs): Strip out global constructors
|
||||
and destructors from the function list.
|
||||
|
||||
start-sanitize-ide
|
||||
Thu Aug 13 15:15:59 1998 Drew Moseley <dmoseley@cygnus.com>
|
||||
|
||||
|
@ -1444,8 +1444,13 @@ gdb_listfuncs (clientData, interp, objc, objv)
|
||||
char *name = cplus_demangle (SYMBOL_NAME(sym), 0);
|
||||
if (name)
|
||||
{
|
||||
funcVals[0] = Tcl_NewStringObj(name, -1);
|
||||
funcVals[1] = mangled;
|
||||
/* strip out "global constructors" and "global destructors" */
|
||||
/* because we aren't interested in them. */
|
||||
if (strncmp (name, "global ", 7))
|
||||
{
|
||||
funcVals[0] = Tcl_NewStringObj(name, -1);
|
||||
funcVals[1] = mangled;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user