Browse Source

* ch-exp.y (MAX, MIN): Rename to MAX_TOKEN, MIN_TOKEN.

* target.c (MIN):  #undef before defining.
gdb-4_18-branch
John Gilmore 34 years ago
parent
commit
57ffffe3fe
  1. 6
      gdb/ChangeLog
  2. 14
      gdb/ch-exp.y

6
gdb/ChangeLog

@ -1,3 +1,8 @@
Mon May 10 19:38:34 1993 John Gilmore (gnu@cygnus.com)
* ch-exp.y (MAX, MIN): Rename to MAX_TOKEN, MIN_TOKEN.
* target.c (MIN): #undef before defining.
Mon May 10 16:03:03 1993 Jim Kingdon (kingdon@cygnus.com) Mon May 10 16:03:03 1993 Jim Kingdon (kingdon@cygnus.com)
Patch from Jeffrey Law: Patch from Jeffrey Law:
@ -39,6 +44,7 @@ Sat May 8 01:39:30 1993 (pes@regent.e-technik.tu-muenchen.de)
* coffread.c (read_coff_symtab): Don't fclose stream as it is no * coffread.c (read_coff_symtab): Don't fclose stream as it is no
longer opened twice. longer opened twice.
>>>>>>> 1.1257
Thu May 6 21:08:55 1993 Jim Kingdon (kingdon@cygnus.com) Thu May 6 21:08:55 1993 Jim Kingdon (kingdon@cygnus.com)
* solib.c (clear_solib): Don't close bfd if it is NULL. * solib.c (clear_solib): Don't close bfd if it is NULL.

14
gdb/ch-exp.y

@ -1,5 +1,5 @@
/* YACC grammar for Chill expressions, for GDB. /* YACC grammar for Chill expressions, for GDB.
Copyright (C) 1992 Free Software Foundation, Inc. Copyright 1992, 1993 Free Software Foundation, Inc.
This file is part of GDB. This file is part of GDB.
@ -227,8 +227,8 @@ yyerror PARAMS ((char *));
%token <voidval> SUCC %token <voidval> SUCC
%token <voidval> ABS %token <voidval> ABS
%token <voidval> CARD %token <voidval> CARD
%token <voidval> MAX %token <voidval> MAX_TOKEN
%token <voidval> MIN %token <voidval> MIN_TOKEN
%token <voidval> SIZE %token <voidval> SIZE
%token <voidval> UPPER %token <voidval> UPPER
%token <voidval> LOWER %token <voidval> LOWER
@ -889,11 +889,11 @@ chill_value_built_in_routine_call :
{ {
$$ = 0; /* FIXME */ $$ = 0; /* FIXME */
} }
| MAX '(' expression ')' | MAX_TOKEN '(' expression ')'
{ {
$$ = 0; /* FIXME */ $$ = 0; /* FIXME */
} }
| MIN '(' expression ')' | MIN_TOKEN '(' expression ')'
{ {
$$ = 0; /* FIXME */ $$ = 0; /* FIXME */
} }
@ -1739,8 +1739,8 @@ static const struct token idtokentab[] =
{ "orif", ORIF }, { "orif", ORIF },
{ "num", NUM }, { "num", NUM },
{ "abs", ABS }, { "abs", ABS },
{ "max", MAX }, { "max", MAX_TOKEN },
{ "min", MIN }, { "min", MIN_TOKEN },
{ "mod", MOD }, { "mod", MOD },
{ "rem", REM }, { "rem", REM },
{ "not", NOT }, { "not", NOT },

Loading…
Cancel
Save