OSDN Git Service

2002-12-09 David Carlton <carlton@math.stanford.edu>
authorcarlton <carlton>
Mon, 9 Dec 2002 20:48:07 +0000 (20:48 +0000)
committercarlton <carlton>
Mon, 9 Dec 2002 20:48:07 +0000 (20:48 +0000)
* p-exp.y: Rename TRUE and FALSE to TRUEKEYWORD and FALSEKEYWORD.

gdb/ChangeLog
gdb/p-exp.y

index 738405c..17c9428 100644 (file)
@@ -1,5 +1,9 @@
 2002-12-09  David Carlton  <carlton@math.stanford.edu>
 
+       * p-exp.y: Rename TRUE and FALSE to TRUEKEYWORD and FALSEKEYWORD.
+
+2002-12-09  David Carlton  <carlton@math.stanford.edu>
+
        * linespec.c (symtab_from_filename): New function.
        (decode_line_1): Move code into symtab_from_filename.
 
index 4e924b8..b4d4739 100644 (file)
@@ -205,7 +205,7 @@ static int search_field;
 
 /* Object pascal */
 %token THIS
-%token <lval> TRUE FALSE
+%token <lval> TRUEKEYWORD FALSEKEYWORD
 
 %left ','
 %left ABOVE_COMMA
@@ -434,13 +434,13 @@ exp       :       exp ASSIGN exp
                        { write_exp_elt_opcode (BINOP_ASSIGN); }
        ;
 
-exp    :       TRUE
+exp    :       TRUEKEYWORD
                        { write_exp_elt_opcode (OP_BOOL);
                          write_exp_elt_longcst ((LONGEST) $1);
                          write_exp_elt_opcode (OP_BOOL); }
        ;
 
-exp    :       FALSE
+exp    :       FALSEKEYWORD
                        { write_exp_elt_opcode (OP_BOOL);
                          write_exp_elt_longcst ((LONGEST) $1);
                          write_exp_elt_opcode (OP_BOOL); }
@@ -1379,14 +1379,14 @@ yylex ()
       if (STREQ (uptokstart, "FALSE"))
        {
           yylval.lval = 0;
-          return FALSE;
+          return FALSEKEYWORD;
         }
       break;
     case 4:
       if (STREQ (uptokstart, "TRUE"))
        {
           yylval.lval = 1;
-         return TRUE;
+         return TRUEKEYWORD;
         }
       if (STREQ (uptokstart, "SELF"))
         {