mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-22 05:35:16 +08:00
gdb/ChangeLog:
2009-11-13 Paul Pluzhnikov <ppluzhnikov@google.com> * python/py-prettyprint.c (print_string_repr): Suppress address printing testsuite/ChangeLog: 2009-11-13 Paul Pluzhnikov <ppluzhnikov@google.com> * gdb.python/py-prettyprint.exp: Adjust.
This commit is contained in:
@ -209,7 +209,12 @@ print_string_repr (PyObject *printer, const char *hint,
|
||||
Py_DECREF (py_str);
|
||||
}
|
||||
else if (replacement)
|
||||
common_val_print (replacement, stream, recurse, options, language);
|
||||
{
|
||||
struct value_print_options opts = *options;
|
||||
|
||||
opts.addressprint = 0;
|
||||
common_val_print (replacement, stream, recurse, &opts, language);
|
||||
}
|
||||
else
|
||||
gdbpy_print_stack ();
|
||||
}
|
||||
|
Reference in New Issue
Block a user