diff options
author | Mark Kettenis <kettenis@gnu.org> | 2012-04-09 17:07:43 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2012-04-09 17:07:43 +0000 |
commit | a7aa5b8aef96aee20b1d0bd46c93a8d6f210d72f (patch) | |
tree | 67c4b1dc2a5e9a9b928973dbe513609cfbeb2da2 /gdb/cp-name-parser.y | |
parent | 7cf492ee5aba3cb968360d83892adf66746f84e1 (diff) | |
download | gdb-a7aa5b8aef96aee20b1d0bd46c93a8d6f210d72f.zip gdb-a7aa5b8aef96aee20b1d0bd46c93a8d6f210d72f.tar.gz gdb-a7aa5b8aef96aee20b1d0bd46c93a8d6f210d72f.tar.bz2 |
* ada-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
defines.
* c-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
defines.
* cp-name-parser.y (yyss, yysslim, yyssp, yystacksize, yyvs)
(yyvsp): New defines.
* f-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
defines.
* jv-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
defines.
* m2-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
defines.
* objc-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
defines.
* p-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
defines.
Diffstat (limited to 'gdb/cp-name-parser.y')
-rw-r--r-- | gdb/cp-name-parser.y | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/cp-name-parser.y b/gdb/cp-name-parser.y index d85a5bf..6767fa5 100644 --- a/gdb/cp-name-parser.y +++ b/gdb/cp-name-parser.y @@ -170,6 +170,12 @@ static struct demangle_component *d_binary (const char *, #define yygindex cpname_yygindex #define yytable cpname_yytable #define yycheck cpname_yycheck +#define yyss cpname_yyss +#define yysslim cpname_yysslim +#define yyssp cpname_yyssp +#define yystacksize cpname_yystacksize +#define yyvs cpname_yyvs +#define yyvsp cpname_yyvsp int yyparse (void); static int yylex (void); |