From fe978cb071b460b2d4aed2f9a71d895f84efce0e Mon Sep 17 00:00:00 2001 From: Pedro Alves Date: Fri, 27 Feb 2015 16:33:07 +0000 Subject: C++ keyword cleanliness, mostly auto-generated This patch renames symbols that happen to have names which are reserved keywords in C++. Most of this was generated with Tromey's cxx-conversion.el script. Some places where later hand massaged a bit, to fix formatting, etc. And this was rebased several times meanwhile, along with re-running the script, so re-running the script from scratch probably does not result in the exact same output. I don't think that matters anyway. gdb/ 2015-02-27 Tom Tromey Pedro Alves Rename symbols whose names are reserved C++ keywords throughout. gdb/gdbserver/ 2015-02-27 Tom Tromey Pedro Alves Rename symbols whose names are reserved C++ keywords throughout. --- gdb/printcmd.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'gdb/printcmd.c') diff --git a/gdb/printcmd.c b/gdb/printcmd.c index 88a07d1..cdbed30 100644 --- a/gdb/printcmd.c +++ b/gdb/printcmd.c @@ -1496,7 +1496,7 @@ display_command (char *arg, int from_tty) { struct format_data fmt; struct expression *expr; - struct display *new; + struct display *newobj; int display_it = 1; const char *exp = arg; @@ -1535,20 +1535,20 @@ display_command (char *arg, int from_tty) innermost_block = NULL; expr = parse_expression (exp); - new = (struct display *) xmalloc (sizeof (struct display)); + newobj = (struct display *) xmalloc (sizeof (struct display)); - new->exp_string = xstrdup (exp); - new->exp = expr; - new->block = innermost_block; - new->pspace = current_program_space; - new->next = display_chain; - new->number = ++display_number; - new->format = fmt; - new->enabled_p = 1; - display_chain = new; + newobj->exp_string = xstrdup (exp); + newobj->exp = expr; + newobj->block = innermost_block; + newobj->pspace = current_program_space; + newobj->next = display_chain; + newobj->number = ++display_number; + newobj->format = fmt; + newobj->enabled_p = 1; + display_chain = newobj; if (from_tty) - do_one_display (new); + do_one_display (newobj); dont_repeat (); } -- cgit v1.1