gdb: Don't print a newline in language la_print_typedef methods
When calling the language la_print_typedef method, don't include a newline at the end, instead print the newline from the users of la_print_typedef. This change will be useful in a later commit when the output from la_print_typedef will be placed into an MI output field, in which case the trailing newline is not required. There should be no user visible changes after this commit. gdb/ChangeLog: * ada-typeprint.c (ada_print_typedef): Don't print newline at the end. * c-typeprint.c (c_print_typedef): Likewise. * f-typeprint.c (f_print_typedef): Likewise. * m2-typeprint.c (m2_print_typedef): Likewise. * p-typeprint.c (pascal_print_typedef): Likewise. * rust-lang.c (rust_print_typedef): Likewise. * symtab.c (print_symbol_info): Print a newline after calling typedef_print. Change-Id: I6e697ea1ec0eadaa31aefaea959b2055188d680d
This commit is contained in:
parent
165f8965d7
commit
e170989694
@ -1,3 +1,15 @@
|
||||
2019-10-31 Andrew Burgess <andrew.burgess@embecosm.com>
|
||||
|
||||
* ada-typeprint.c (ada_print_typedef): Don't print newline at the
|
||||
end.
|
||||
* c-typeprint.c (c_print_typedef): Likewise.
|
||||
* f-typeprint.c (f_print_typedef): Likewise.
|
||||
* m2-typeprint.c (m2_print_typedef): Likewise.
|
||||
* p-typeprint.c (pascal_print_typedef): Likewise.
|
||||
* rust-lang.c (rust_print_typedef): Likewise.
|
||||
* symtab.c (print_symbol_info): Print a newline after calling
|
||||
typedef_print.
|
||||
|
||||
2019-10-31 Andrew Burgess <andrew.burgess@embecosm.com>
|
||||
|
||||
* symtab.c (info_module_cmdlist): New variable.
|
||||
|
@ -945,5 +945,4 @@ ada_print_typedef (struct type *type, struct symbol *new_symbol,
|
||||
{
|
||||
type = ada_check_typedef (type);
|
||||
ada_print_type (type, "", stream, 0, 0, &type_print_raw_options);
|
||||
fprintf_filtered (stream, "\n");
|
||||
}
|
||||
|
@ -211,7 +211,7 @@ c_print_typedef (struct type *type,
|
||||
SYMBOL_LINKAGE_NAME (new_symbol)) != 0
|
||||
|| TYPE_CODE (SYMBOL_TYPE (new_symbol)) == TYPE_CODE_TYPEDEF)
|
||||
fprintf_filtered (stream, " %s", SYMBOL_PRINT_NAME (new_symbol));
|
||||
fprintf_filtered (stream, ";\n");
|
||||
fprintf_filtered (stream, ";");
|
||||
}
|
||||
|
||||
/* If TYPE is a derived type, then print out derivation information.
|
||||
|
@ -54,7 +54,6 @@ f_print_typedef (struct type *type, struct symbol *new_symbol,
|
||||
{
|
||||
type = check_typedef (type);
|
||||
f_print_type (type, "", stream, 0, 0, &type_print_raw_options);
|
||||
fprintf_filtered (stream, "\n");
|
||||
}
|
||||
|
||||
/* LEVEL is the depth to indent lines by. */
|
||||
|
@ -170,7 +170,7 @@ m2_print_typedef (struct type *type, struct symbol *new_symbol,
|
||||
else
|
||||
fprintf_filtered (stream, "<builtin> = ");
|
||||
type_print (type, "", stream, 0);
|
||||
fprintf_filtered (stream, ";\n");
|
||||
fprintf_filtered (stream, ";");
|
||||
}
|
||||
|
||||
/* m2_type_name - if a, type, has a name then print it. */
|
||||
|
@ -101,7 +101,7 @@ pascal_print_typedef (struct type *type, struct symbol *new_symbol,
|
||||
fprintf_filtered (stream, "type ");
|
||||
fprintf_filtered (stream, "%s = ", SYMBOL_PRINT_NAME (new_symbol));
|
||||
type_print (type, "", stream, 0);
|
||||
fprintf_filtered (stream, ";\n");
|
||||
fprintf_filtered (stream, ";");
|
||||
}
|
||||
|
||||
/* If TYPE is a derived type, then print out derivation information.
|
||||
|
@ -831,7 +831,7 @@ rust_print_typedef (struct type *type,
|
||||
type = check_typedef (type);
|
||||
fprintf_filtered (stream, "type %s = ", SYMBOL_PRINT_NAME (new_symbol));
|
||||
type_print (type, "", stream, 0);
|
||||
fprintf_filtered (stream, ";\n");
|
||||
fprintf_filtered (stream, ";");
|
||||
}
|
||||
|
||||
/* la_print_type implementation for Rust. */
|
||||
|
@ -4774,10 +4774,8 @@ print_symbol_info (enum search_domain kind,
|
||||
if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_TYPEDEF)
|
||||
typedef_print (SYMBOL_TYPE (sym), sym, gdb_stdout);
|
||||
else
|
||||
{
|
||||
type_print (SYMBOL_TYPE (sym), "", gdb_stdout, -1);
|
||||
printf_filtered ("\n");
|
||||
}
|
||||
type_print (SYMBOL_TYPE (sym), "", gdb_stdout, -1);
|
||||
printf_filtered ("\n");
|
||||
}
|
||||
/* variable, func, or typedef-that-is-c++-class. */
|
||||
else if (kind < TYPES_DOMAIN
|
||||
|
Loading…
Reference in New Issue
Block a user