aboutsummaryrefslogtreecommitdiff
path: root/gdb/objc-exp.y
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2004-07-28 15:49:04 +0000
committerAndrew Cagney <cagney@redhat.com>2004-07-28 15:49:04 +0000
commit54a5b07d668e9320efb1ada27582f859ccfaaaf3 (patch)
treebb8806432915e2a3c51e5fce41748971395d232f /gdb/objc-exp.y
parente9667a656bea31ff7d801cf8a7699f0f006319a1 (diff)
downloadfsf-binutils-gdb-54a5b07d668e9320efb1ada27582f859ccfaaaf3.zip
fsf-binutils-gdb-54a5b07d668e9320efb1ada27582f859ccfaaaf3.tar.gz
fsf-binutils-gdb-54a5b07d668e9320efb1ada27582f859ccfaaaf3.tar.bz2
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/objc-exp.y')
-rw-r--r--gdb/objc-exp.y7
1 files changed, 5 insertions, 2 deletions
diff --git a/gdb/objc-exp.y b/gdb/objc-exp.y
index f56f68d..34896c5 100644
--- a/gdb/objc-exp.y
+++ b/gdb/objc-exp.y
@@ -1766,8 +1766,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;
/* See if it's an ObjC classname. */
if (!sym)