mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-03 21:34:46 +08:00
* stack.c (print_block_frame_locals): Print spaces, not tabs.
Update for call to print_variable_and_value. (print_frame_arg_vars): Update. * value.h (print_variable_and_value): Rename from print_variable_value. Add 'name' and 'indent' parameters. * printcmd.c (print_variable_and_value): Rename from print_variable_value. Add 'name' and 'indent' parameters. Use common_val_print. * f-valprint.c (info_common_command): Update.
This commit is contained in:
@ -566,9 +566,7 @@ info_common_command (char *comname, int from_tty)
|
||||
|
||||
while (entry != NULL)
|
||||
{
|
||||
printf_filtered ("%s = ", SYMBOL_PRINT_NAME (entry->symbol));
|
||||
print_variable_value (entry->symbol, fi, gdb_stdout);
|
||||
printf_filtered ("\n");
|
||||
print_variable_and_value (NULL, entry->symbol, fi, gdb_stdout, 0);
|
||||
entry = entry->next;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user