From: Jan Kratochvil Date: Sun, 11 Sep 2011 09:54:18 +0000 (+0000) Subject: gdb/ X-Git-Tag: binutils-2_22-branchpoint~96 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bdaf8d4acdff1c1635e0f66e6f61b893af359b3c;p=external%2Fbinutils.git gdb/ Code cleanup. * mi/mi-cmd-stack.c (list_args_or_locals): Use enum for the parameter values. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 75f96c3..74aef61 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2011-09-11 Jan Kratochvil + + Code cleanup. + * mi/mi-cmd-stack.c (list_args_or_locals): Use enum for the parameter + values. + 2011-09-09 Jan Kratochvil Code cleanup. diff --git a/gdb/mi/mi-cmd-stack.c b/gdb/mi/mi-cmd-stack.c index 3ccdeae..3654727 100644 --- a/gdb/mi/mi-cmd-stack.c +++ b/gdb/mi/mi-cmd-stack.c @@ -36,7 +36,8 @@ enum what_to_list { locals, arguments, all }; static void list_args_or_locals (enum what_to_list what, - int values, struct frame_info *fi); + enum print_values values, + struct frame_info *fi); /* Print a list of the stack frames. Args can be none, in which case we want to print the whole backtrace, or a pair of numbers @@ -241,7 +242,8 @@ mi_cmd_stack_list_variables (char *command, char **argv, int argc) of the variables, if an argument of 1 is passed, print the values as well. */ static void -list_args_or_locals (enum what_to_list what, int values, struct frame_info *fi) +list_args_or_locals (enum what_to_list what, enum print_values values, + struct frame_info *fi) { struct block *block; struct symbol *sym;