From: Pierre Muller Date: Thu, 18 Apr 2002 15:22:19 +0000 (+0000) Subject: 2002-04-18 Pierre Muller X-Git-Tag: binutils-2_13-branchpoint~1343 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=29f319b84c97f2799dfdd52caa2383eae0877a66;p=external%2Fbinutils.git 2002-04-18 Pierre Muller * p-exp.y: Add precedence rule for '^' token. This removes the shift/reduce conflicts. Remove the comment concerning these shift/reduce conflicts. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 39aad84..c0689e5 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2002-04-18 Pierre Muller + + * p-exp.y: Add precedence rule for '^' token. + This removes the shift/reduce conflicts. + Remove the comment concerning these shift/reduce conflicts. + 2002-04-18 Elena Zannoni * rs6000-tdep.c (COMMON_UISA_NOFP_REGS): New macro. diff --git a/gdb/p-exp.y b/gdb/p-exp.y index b0e4daa..b130e97 100644 --- a/gdb/p-exp.y +++ b/gdb/p-exp.y @@ -37,8 +37,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ too messy, particularly when such includes can be inserted at random times by the parser generator. */ -/* FIXME: there are still 21 shift/reduce conflicts - Other known bugs or limitations: +/* Known bugs or limitations: - pascal string operations are not supported at all. - there are some problems with boolean types. - Pascal type hexadecimal constants are not supported @@ -212,6 +211,7 @@ parse_number (char *, int, int, YYSTYPE *); %left '*' '/' %right UNARY INCREMENT DECREMENT %right ARROW '.' '[' '(' +%left '^' %token BLOCKNAME %type block %left COLONCOLON