diff options
author | Tom Tromey <tromey@redhat.com> | 2012-07-26 20:11:10 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2012-07-26 20:11:10 +0000 |
commit | f2e8016f4120fda5b9b7bd4e739852808fb03f46 (patch) | |
tree | 8915cb002cf229c8c35f6e1d88a17aa969a4122d /gdb/objc-lang.c | |
parent | f66713d24ad2c0a2e3d0e480119716f6d75a837e (diff) | |
download | gdb-f2e8016f4120fda5b9b7bd4e739852808fb03f46.zip gdb-f2e8016f4120fda5b9b7bd4e739852808fb03f46.tar.gz gdb-f2e8016f4120fda5b9b7bd4e739852808fb03f46.tar.bz2 |
* Makefile.in (SFILES): Remove objc-exp.y.
(YYFILES): Remove objc-exp.c.
(YYOBJ): Remove objc-exp.o.
(local-maintainer-clean): Don't mention objc-exp.c.
* c-exp.y: Include objc-lang.h.
(%union) <class>: New field.
(NSSTRING, SELECTOR, CLASSNAME, OBJC_LBRAC): New tokens.
(exp): Clone subscript production for OBJC_LBRAC. Add various
Objective C productions.
(msglist, msgarglist, msgarg): New productions.
(array_mod, func_mod, operator): Clone productions for
OBJC_LBRAC.
(parse_string_or_char): Handle '@' strings.
(lex_one_token): Return OBJC_LBRAC. Recognize @selector.
(classify_name): Check la_name_of_this. Recognize ObjC class
names.
* objc-exp.y: Remove.
* objc-lang.c (objc_language_defn): Use c_parse, c_error.
* objc-lang.h (objc_parse, objc_error): Don't declare.
gdb/testsuite
* gdb.objc/print.exp (test_float_accepted): Remove kfails.
Diffstat (limited to 'gdb/objc-lang.c')
-rw-r--r-- | gdb/objc-lang.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/objc-lang.c b/gdb/objc-lang.c index 15bf792..1a07c33 100644 --- a/gdb/objc-lang.c +++ b/gdb/objc-lang.c @@ -514,8 +514,8 @@ const struct language_defn objc_language_defn = { array_row_major, macro_expansion_c, &exp_descriptor_standard, - objc_parse, - objc_error, + c_parse, + c_error, null_post_parser, objc_printchar, /* Print a character constant */ objc_printstr, /* Function to print string constant */ |