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>
|
2002-04-18 Elena Zannoni <ezannoni@redhat.com>
|
||||||
|
|
||||||
* rs6000-tdep.c (COMMON_UISA_NOFP_REGS): New macro.
|
* 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
|
too messy, particularly when such includes can be inserted at random
|
||||||
times by the parser generator. */
|
times by the parser generator. */
|
||||||
|
|
||||||
/* FIXME: there are still 21 shift/reduce conflicts
|
/* Known bugs or limitations:
|
||||||
Other known bugs or limitations:
|
|
||||||
- pascal string operations are not supported at all.
|
- pascal string operations are not supported at all.
|
||||||
- there are some problems with boolean types.
|
- there are some problems with boolean types.
|
||||||
- Pascal type hexadecimal constants are not supported
|
- Pascal type hexadecimal constants are not supported
|
||||||
|
@ -212,6 +211,7 @@ parse_number (char *, int, int, YYSTYPE *);
|
||||||
%left '*' '/'
|
%left '*' '/'
|
||||||
%right UNARY INCREMENT DECREMENT
|
%right UNARY INCREMENT DECREMENT
|
||||||
%right ARROW '.' '[' '('
|
%right ARROW '.' '[' '('
|
||||||
|
%left '^'
|
||||||
%token <ssym> BLOCKNAME
|
%token <ssym> BLOCKNAME
|
||||||
%type <bval> block
|
%type <bval> block
|
||||||
%left COLONCOLON
|
%left COLONCOLON
|
||||||
|
|
Loading…
Add table
Reference in a new issue