diff options
author | Tom Tromey <tom@tromey.com> | 2019-03-24 08:40:32 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-04-04 19:55:10 -0600 |
commit | 1201a264c8fd227737342345ab54e938295188b6 (patch) | |
tree | 7c419bb8e09f1875dedd813e7859edaa18aa6a34 /gdb/stap-probe.c | |
parent | e3980ce2a9bf19ade17fdd9817765f2d1e17a0d8 (diff) | |
download | gdb-1201a264c8fd227737342345ab54e938295188b6.zip gdb-1201a264c8fd227737342345ab54e938295188b6.tar.gz gdb-1201a264c8fd227737342345ab54e938295188b6.tar.bz2 |
Remove parser_state "initial_size" parameter
All the real (not test) uses of parser_state pass 10 as the
"initial_size" parameter, and it seems to me that there's no real
reason to require callers to set this. This patch removes this
parameter.
gdb/ChangeLog
2019-04-04 Tom Tromey <tom@tromey.com>
* dtrace-probe.c (dtrace_probe::build_arg_exprs): Update.
* stap-probe.c (stap_parse_argument): Update.
* stap-probe.h (struct stap_parse_info) <stap_parse_info>: Remove
initial_size parameter.
* rust-exp.y (rust_lex_tests): Update.
* parse.c (parser_state): Update.
(parse_exp_in_context): Update.
* parser-defs.h (struct parser_state) <parser_state>: Remove
"initial_size" parameter.
Diffstat (limited to 'gdb/stap-probe.c')
-rw-r--r-- | gdb/stap-probe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/stap-probe.c b/gdb/stap-probe.c index a53c04d..24b2b78 100644 --- a/gdb/stap-probe.c +++ b/gdb/stap-probe.c @@ -1149,7 +1149,7 @@ stap_parse_argument (const char **arg, struct type *atype, /* We need to initialize the expression buffer, in order to begin our parsing efforts. We use language_c here because we may need to do pointer arithmetics. */ - struct stap_parse_info p (*arg, atype, 10, language_def (language_c), + struct stap_parse_info p (*arg, atype, language_def (language_c), gdbarch); stap_parse_argument_1 (&p, 0, STAP_OPERAND_PREC_NONE); |