diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-07-28 15:49:04 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-07-28 15:49:04 +0000 |
commit | 97a93b166530bb65352fcd748d2e6cba613bbd79 (patch) | |
tree | 9eaab83e00f9bf04dd5ddafc67d3e3e294f9e76b /gdb/p-exp.y | |
parent | f2af537447c471d28471f6726c51b51384069065 (diff) | |
download | gdb-97a93b166530bb65352fcd748d2e6cba613bbd79.tar.gz |
2004-07-28 Andrew Cagney <cagney@gnu.org>
* gdbtypes.c (lookup_primitive_typename): Delete function.
* gdbtypes.h (lookup_primitive_typename): Delete declaration.
* ada-lex.l: Use language_lookup_primitive_type_by_name.
* gdbtypes.c (lookup_typename): Ditto.
* f-exp.y (yylex): Ditto.
* c-exp.y (yylex): Ditto, eliminate assignment in "if".
Diffstat (limited to 'gdb/p-exp.y')
-rw-r--r-- | gdb/p-exp.y | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gdb/p-exp.y b/gdb/p-exp.y index 779424e90d5..a80f8e9275b 100644 --- a/gdb/p-exp.y +++ b/gdb/p-exp.y @@ -1611,8 +1611,11 @@ yylex () #endif /* not 0 */ return TYPENAME; } - if ((yylval.tsym.type = lookup_primitive_typename (tmp)) != 0) - return TYPENAME; + yylval.tsym.type + = language_lookup_primitive_type_by_name (current_language, + current_gdbarch, tmp); + if (yylval.tsym.type != NULL) + return TYPENAME; /* Input names that aren't symbols but ARE valid hex numbers, when the input radix permits them, can be names or numbers |