mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-18 00:32:30 +08:00
* cp-valprint.c, p-valprint.c: Revert last change.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2006-12-05 Daniel Jacobowitz <dan@codesourcery.com>
|
||||||
|
|
||||||
|
* cp-valprint.c, p-valprint.c: Revert last change.
|
||||||
|
|
||||||
2006-12-05 Daniel Jacobowitz <dan@codesourcery.com>
|
2006-12-05 Daniel Jacobowitz <dan@codesourcery.com>
|
||||||
|
|
||||||
* NEWS: Mention MIPS remote autodetection, mips64 gdbserver,
|
* NEWS: Mention MIPS remote autodetection, mips64 gdbserver,
|
||||||
|
@ -265,7 +265,7 @@ cp_print_value_fields (struct type *type, struct type *real_type,
|
|||||||
struct type **dont_print_vb,int dont_print_statmem)
|
struct type **dont_print_vb,int dont_print_statmem)
|
||||||
{
|
{
|
||||||
int i, len, n_baseclasses;
|
int i, len, n_baseclasses;
|
||||||
struct obstack tmp_obstack = { 0 };
|
struct obstack tmp_obstack;
|
||||||
char *last_dont_print = obstack_next_free (&dont_print_statmem_obstack);
|
char *last_dont_print = obstack_next_free (&dont_print_statmem_obstack);
|
||||||
int fields_seen = 0;
|
int fields_seen = 0;
|
||||||
|
|
||||||
@ -524,7 +524,7 @@ cp_print_value (struct type *type, struct type *real_type,
|
|||||||
struct ui_file *stream, int format, int recurse,
|
struct ui_file *stream, int format, int recurse,
|
||||||
enum val_prettyprint pretty, struct type **dont_print_vb)
|
enum val_prettyprint pretty, struct type **dont_print_vb)
|
||||||
{
|
{
|
||||||
struct obstack tmp_obstack = { 0 };
|
struct obstack tmp_obstack;
|
||||||
struct type **last_dont_print
|
struct type **last_dont_print
|
||||||
= (struct type **) obstack_next_free (&dont_print_vb_obstack);
|
= (struct type **) obstack_next_free (&dont_print_vb_obstack);
|
||||||
int i, n_baseclasses = TYPE_N_BASECLASSES (type);
|
int i, n_baseclasses = TYPE_N_BASECLASSES (type);
|
||||||
|
@ -753,7 +753,7 @@ pascal_object_print_value_fields (struct type *type, const gdb_byte *valaddr,
|
|||||||
int dont_print_statmem)
|
int dont_print_statmem)
|
||||||
{
|
{
|
||||||
int i, len, n_baseclasses;
|
int i, len, n_baseclasses;
|
||||||
struct obstack tmp_obstack = { 0 };
|
struct obstack tmp_obstack;
|
||||||
char *last_dont_print = obstack_next_free (&dont_print_statmem_obstack);
|
char *last_dont_print = obstack_next_free (&dont_print_statmem_obstack);
|
||||||
|
|
||||||
CHECK_TYPEDEF (type);
|
CHECK_TYPEDEF (type);
|
||||||
@ -922,7 +922,7 @@ pascal_object_print_value (struct type *type, const gdb_byte *valaddr,
|
|||||||
enum val_prettyprint pretty,
|
enum val_prettyprint pretty,
|
||||||
struct type **dont_print_vb)
|
struct type **dont_print_vb)
|
||||||
{
|
{
|
||||||
struct obstack tmp_obstack = { 0 };
|
struct obstack tmp_obstack;
|
||||||
struct type **last_dont_print
|
struct type **last_dont_print
|
||||||
= (struct type **) obstack_next_free (&dont_print_vb_obstack);
|
= (struct type **) obstack_next_free (&dont_print_vb_obstack);
|
||||||
int i, n_baseclasses = TYPE_N_BASECLASSES (type);
|
int i, n_baseclasses = TYPE_N_BASECLASSES (type);
|
||||||
|
Reference in New Issue
Block a user