diff options
author | Fred Fish <fnf@specifix.com> | 1992-12-31 06:23:28 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1992-12-31 06:23:28 +0000 |
commit | cbf5231b9547cd624e1c8b1be461c77b6a82e1d5 (patch) | |
tree | baf82b7344c47c689411005a0a50afc774ed51c2 /gdb | |
parent | 45fe3db4ede57e944e8a780ffdfbaafcfe5bd996 (diff) | |
download | fsf-binutils-gdb-cbf5231b9547cd624e1c8b1be461c77b6a82e1d5.zip fsf-binutils-gdb-cbf5231b9547cd624e1c8b1be461c77b6a82e1d5.tar.gz fsf-binutils-gdb-cbf5231b9547cd624e1c8b1be461c77b6a82e1d5.tar.bz2 |
* c-exp.y, m2-exp.y (yyrule, yyname): Remap like other yy* names
for byacc.
**** start-sanitize-chill ****
* ch-exp.y (yyrule, yyname): Remap like other yy* names for byacc.
**** end-sanitize-chill ****
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/c-exp.y | 2 | ||||
-rw-r--r-- | gdb/ch-exp.y | 2 | ||||
-rw-r--r-- | gdb/m2-exp.y | 2 |
4 files changed, 12 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 72c8e19..8772a50 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,11 @@ Wed Dec 30 19:47:13 1992 Fred Fish (fnf@cygnus.com) + * c-exp.y, m2-exp.y (yyrule, yyname): Remap like other yy* names + for byacc. + **** start-sanitize-chill **** + * ch-exp.y (yyrule, yyname): Remap like other yy* names for byacc. + **** end-sanitize-chill **** + * c-exp.y, m2-exp.y (yyreds, yytoks): Remap like other yy* names. * c-exp.y, m2-exp.y (YYDEBUG): Define if MAINTENANCE_CMDS is defined and YYDEBUG is not already defined. diff --git a/gdb/c-exp.y b/gdb/c-exp.y index b77200e..f041864 100644 --- a/gdb/c-exp.y +++ b/gdb/c-exp.y @@ -73,6 +73,8 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #define yy_yyv c_yyv #define yyval c_val #define yylloc c_lloc +#define yyrule c_rule /* With YYDEBUG defined, byacc */ +#define yyname c_name /* With YYDEBUG defined, byacc */ #define yyreds c_reds /* With YYDEBUG defined */ #define yytoks c_toks /* With YYDEBUG defined */ #define yyss c_yyss /* byacc */ diff --git a/gdb/ch-exp.y b/gdb/ch-exp.y index 2f6376a3..5e677bb 100644 --- a/gdb/ch-exp.y +++ b/gdb/ch-exp.y @@ -90,6 +90,8 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #define yy_yyv chill_yyv #define yyval chill_val #define yylloc chill_lloc +#define yyrule chill_rule /* With YYDEBUG defined, byacc */ +#define yyname chill_name /* With YYDEBUG defined, byacc */ #define yyreds chill_reds /* With YYDEBUG defined */ #define yytoks chill_toks /* With YYDEBUG defined */ #define yyss chill_yyss /* byacc */ diff --git a/gdb/m2-exp.y b/gdb/m2-exp.y index 2bee738..0132e03 100644 --- a/gdb/m2-exp.y +++ b/gdb/m2-exp.y @@ -75,6 +75,8 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #define yy_yyv m2_yyv #define yyval m2_val #define yylloc m2_lloc +#define yyrule m2_rule /* With YYDEBUG defined, byacc */ +#define yyname m2_name /* With YYDEBUG defined, byacc */ #define yyreds m2_reds /* With YYDEBUG defined */ #define yytoks m2_toks /* With YYDEBUG defined */ #define yyss m2_yyss /* byacc */ |