From: Simon Marchi Date: Tue, 14 Mar 2017 14:25:39 +0000 (-0400) Subject: Make length_of_subexp static X-Git-Tag: gdb-8.0-release~399 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cf81cf6081d1a8c15c477f903d15d7b88f31b686;p=external%2Fbinutils.git Make length_of_subexp static It isn't used anywhere else than the file it's defined in. gdb/ChangeLog: * parse.c (length_of_subexp): Make static. * parser-defs.h (length_of_subexp): Remove. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e90fbc0..63d7441 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2017-03-14 Simon Marchi + + * parse.c (length_of_subexp): Make static. + * parser-defs.h (length_of_subexp): Remove. + 2017-03-14 Andreas Arnez * linux-nat.c (linux_proc_xfer_partial): Handle write operations diff --git a/gdb/parse.c b/gdb/parse.c index 9f89b1e..e6f6805 100644 --- a/gdb/parse.c +++ b/gdb/parse.c @@ -827,7 +827,7 @@ prefixify_expression (struct expression *expr) /* Return the number of exp_elements in the postfix subexpression of EXPR whose operator is at index ENDPOS - 1 in EXPR. */ -int +static int length_of_subexp (struct expression *expr, int endpos) { int oplen, args; diff --git a/gdb/parser-defs.h b/gdb/parser-defs.h index 85da6a4..23757d9 100644 --- a/gdb/parser-defs.h +++ b/gdb/parser-defs.h @@ -246,8 +246,6 @@ extern void type_stack_cleanup (void *arg); extern void push_typelist (VEC (type_ptr) *typelist); -extern int length_of_subexp (struct expression *, int); - extern int dump_subexp (struct expression *, struct ui_file *, int); extern int dump_subexp_body_standard (struct expression *,