* valprint.c (val_print_fields): Call fprint_symbol to get

automatic C++ demangling for mangled field names.
This commit is contained in:
Fred Fish 1992-06-24 06:24:51 +00:00
parent f54e9fd84f
commit b4cc55b533
2 changed files with 5 additions and 3 deletions

View File

@ -24,6 +24,8 @@ Tue Jun 23 21:46:26 1992 Fred Fish (fnf@cygnus.com)
ptrace().
* cadillac.c (kernel_dispatch): Make return type void.
* cadillac.c (iosig): Signal handlers take one int arg.
* valprint.c (val_print_fields): Call fprint_symbol to get
automatic C++ demangling for mangled field names.
Mon Jun 22 20:18:06 1992 Fred Fish (fnf@cygnus.com)

View File

@ -539,14 +539,14 @@ val_print_fields (type, valaddr, stream, format, recurse, pretty, dont_print)
fputs_filtered ("\"( ptr \"", stream);
else
fputs_filtered ("\"( nodef \"", stream);
fputs_filtered (TYPE_FIELD_NAME (type, i), stream);
fprint_symbol (stream, TYPE_FIELD_NAME (type, i));
fputs_filtered ("\" \"", stream);
fputs_filtered (TYPE_FIELD_NAME (type, i), stream);
fprint_symbol (stream, TYPE_FIELD_NAME (type, i));
fputs_filtered ("\") \"", stream);
}
else
{
fputs_filtered (TYPE_FIELD_NAME (type, i), stream);
fprint_symbol (stream, TYPE_FIELD_NAME (type, i));
fputs_filtered (" = ", stream);
}
if (TYPE_FIELD_PACKED (type, i))