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/ada-exp.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/ada-exp.y')
-rw-r--r-- | gdb/ada-exp.y | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/ada-exp.y b/gdb/ada-exp.y index 0fa1812..36ef3d4 100644 --- a/gdb/ada-exp.y +++ b/gdb/ada-exp.y @@ -94,6 +94,12 @@ #define yytoks ada_toks /* With YYDEBUG defined */ #define yyname ada_name /* With YYDEBUG defined */ #define yyrule ada_rule /* With YYDEBUG defined */ +#define yyss ada_yyss +#define yysslim ada_yysslim +#define yyssp ada_yyssp +#define yystacksize ada_yystacksize +#define yyvs ada_yyvs +#define yyvsp ada_yyvsp #ifndef YYDEBUG #define YYDEBUG 1 /* Default to yydebug support */ |