diff options
author | Tom Tromey <tom@tromey.com> | 2019-03-24 09:01:18 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-04-04 19:55:10 -0600 |
commit | 73923d7eedc7ab52144308ef7e9c12cbe4341bca (patch) | |
tree | fcee1ced0863bbfbe10f7ac06a670188b21da165 /gdb/rust-exp.y | |
parent | fa9f5be6830e9245ee1ad1eab9725cc039d45d07 (diff) | |
download | gdb-73923d7eedc7ab52144308ef7e9c12cbe4341bca.zip gdb-73923d7eedc7ab52144308ef7e9c12cbe4341bca.tar.gz gdb-73923d7eedc7ab52144308ef7e9c12cbe4341bca.tar.bz2 |
Turn parse_language into a method
This changes parse_language into a method of parser_state. This patch
was written by a script.
gdb/ChangeLog
2019-04-04 Tom Tromey <tom@tromey.com>
* rust-exp.y: Replace "parse_language" with method call.
* p-exp.y:
(yylex): Replace "parse_language" with method call.
* m2-exp.y:
(yylex): Replace "parse_language" with method call.
* go-exp.y (classify_name): Replace "parse_language" with method
call.
* f-exp.y (yylex): Replace "parse_language" with method call.
* d-exp.y (lex_one_token): Replace "parse_language" with method
call.
* c-exp.y:
(lex_one_token, classify_name, yylex): Replace "parse_language"
with method call.
* ada-exp.y (find_primitive_type, type_char)
(type_system_address): Replace "parse_language" with method call.
Diffstat (limited to 'gdb/rust-exp.y')
-rw-r--r-- | gdb/rust-exp.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/rust-exp.y b/gdb/rust-exp.y index 60eb617..9b6ca19 100644 --- a/gdb/rust-exp.y +++ b/gdb/rust-exp.y @@ -205,7 +205,7 @@ struct rust_parser /* Return the parser's language. */ const struct language_defn *language () const { - return parse_language (pstate); + return pstate->language (); } /* Return the parser's gdbarch. */ @@ -2280,7 +2280,7 @@ rust_parser::convert_ast_to_expression (const struct rust_op *operation, { struct type *type; - type = language_lookup_primitive_type (parse_language (pstate), + type = language_lookup_primitive_type (pstate->language (), pstate->gdbarch (), "()"); |