2002-04-18 Pierre Muller <muller@ics.u-strasbg.fr>
* p-exp.y: Add precedence rule for '^' token. This removes the shift/reduce conflicts. Remove the comment concerning these shift/reduce conflicts.
This commit is contained in:
parent
ebeac11a97
commit
29f319b84c
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2002-04-18 Pierre Muller <muller@ics.u-strasbg.fr>
|
||||
|
||||
* 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 <ezannoni@redhat.com>
|
||||
|
||||
* rs6000-tdep.c (COMMON_UISA_NOFP_REGS): New macro.
|
||||
|
|
|
@ -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 <ssym> BLOCKNAME
|
||||
%type <bval> block
|
||||
%left COLONCOLON
|
||||
|
|
Loading…
Reference in a new issue