diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2009-06-17 18:46:26 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2009-06-17 18:46:26 +0000 |
commit | e6c014f28ffa7d52bf7e9b599422f5ca910a17dd (patch) | |
tree | 8e47549c435c05b87846f1ed80a3ce98342eb015 /gdb/c-exp.y | |
parent | ec22ec346b8e22135fd4cb48aa3853f032dee331 (diff) | |
download | gdb-e6c014f28ffa7d52bf7e9b599422f5ca910a17dd.zip gdb-e6c014f28ffa7d52bf7e9b599422f5ca910a17dd.tar.gz gdb-e6c014f28ffa7d52bf7e9b599422f5ca910a17dd.tar.bz2 |
* gdbtypes.h (struct language_defn): Add forward declaration.
(lookup_typename): Add LANGUAGE and GDBARCH parameters.
(lookup_unsigned_typename): Likewise.
(lookup_signed_typename): Likewise.
* gdbtypes.c (lookup_typename): Add LANGUAGE and GDBARCH parameters.
Use them instead of current_language and current_gdbarch.
(lookup_unsigned_typename): Add LANGUAGE and GDBARCH parameters.
Pass them to lookup_typename.
(lookup_signed_typename): Likewise.
* c-exp.y: Pass parse_language and parse_gdbarch to
lookup_unsigned_typename and lookup_signed_typename.
* objc-exp.y: Likewise.
* m2-exp.y: Pass parse_language and parse_gdbarch to lookup_typename.
* c-lang.c (evaluate_subexp_c): Pass expression language and
gdbarch to lookup_typename.
* printcmd.c (printf_command): Pass current language and
gdbarch to lookup_typename.
* python/python-type.c (typy_lookup_typename): Likewise.
Include "language.h".
Diffstat (limited to 'gdb/c-exp.y')
-rw-r--r-- | gdb/c-exp.y | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gdb/c-exp.y b/gdb/c-exp.y index d8b3975..75851d0 100644 --- a/gdb/c-exp.y +++ b/gdb/c-exp.y @@ -969,11 +969,15 @@ typebase /* Implements (approximately): (type-qualifier)* type-specifier */ { $$ = lookup_enum (copy_name ($2), expression_context_block); } | UNSIGNED typename - { $$ = lookup_unsigned_typename (TYPE_NAME($2.type)); } + { $$ = lookup_unsigned_typename (parse_language, + parse_gdbarch, + TYPE_NAME($2.type)); } | UNSIGNED { $$ = parse_type->builtin_unsigned_int; } | SIGNED_KEYWORD typename - { $$ = lookup_signed_typename (TYPE_NAME($2.type)); } + { $$ = lookup_signed_typename (parse_language, + parse_gdbarch, + TYPE_NAME($2.type)); } | SIGNED_KEYWORD { $$ = parse_type->builtin_int; } /* It appears that this rule for templates is never |