diff options
author | Sergio Durigan Junior <sergiodj@redhat.com> | 2010-06-04 21:39:47 +0000 |
---|---|---|
committer | Sergio Durigan Junior <sergiodj@redhat.com> | 2010-06-04 21:39:47 +0000 |
commit | 554794dcf26bc2b4d9e9286c8000182b54554dd6 (patch) | |
tree | 296c4648c88766d3fb6c45c55af3e387de563cd7 /gdb/parser-defs.h | |
parent | bddaacb97a341ad5d4e4f808eee50cc8a40ae17e (diff) | |
download | gdb-554794dcf26bc2b4d9e9286c8000182b54554dd6.zip gdb-554794dcf26bc2b4d9e9286c8000182b54554dd6.tar.gz gdb-554794dcf26bc2b4d9e9286c8000182b54554dd6.tar.bz2 |
2010-06-04 Sergio Durigan Junior <sergiodj@redhat.com>
* ada-lang.c (ada_operator_length): Constify `struct expression'.
* parse.c (operator_length): Likewise.
(operator_length_standard): Likewise.
* parser-defs.h (operator_length): Likewise.
(operator_length_standard): Likewise.
(struct exp_descriptor <operator_length>): Likewise.
Diffstat (limited to 'gdb/parser-defs.h')
-rw-r--r-- | gdb/parser-defs.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gdb/parser-defs.h b/gdb/parser-defs.h index 864f789..bb79ae1 100644 --- a/gdb/parser-defs.h +++ b/gdb/parser-defs.h @@ -188,9 +188,10 @@ extern int dump_subexp (struct expression *, struct ui_file *, int); extern int dump_subexp_body_standard (struct expression *, struct ui_file *, int); -extern void operator_length (struct expression *, int, int *, int *); +extern void operator_length (const struct expression *, int, int *, int *); -extern void operator_length_standard (struct expression *, int, int *, int *); +extern void operator_length_standard (const struct expression *, int, int *, + int *); extern int operator_check_standard (struct expression *exp, int pos, int (*objfile_func) @@ -273,7 +274,7 @@ struct exp_descriptor /* Returns number of exp_elements needed to represent an operator and the number of subexpressions it takes. */ - void (*operator_length) (struct expression*, int, int*, int *); + void (*operator_length) (const struct expression*, int, int*, int *); /* Call TYPE_FUNC and OBJFILE_FUNC for any TYPE and OBJFILE found being referenced by the single operator of EXP at position POS. Operator |