Re: [PATCH, PR 57195] Allow mode iterators inside angle brackets

2015-09-17 Thread Richard Sandiford
Michael Collison writes: > On 09/14/2015 02:34 AM, Richard Sandiford wrote: >> Michael Collison writes: >>> Here is a modified patch that takes your comments into account. Breaking >>> on depth == 0 with '>' does not work due to the code looking for whitespace. >> What goes wrong? Just to make s

Re: [PATCH, PR 57195] Allow mode iterators inside angle brackets

2015-09-16 Thread Michael Collison
On 09/14/2015 02:34 AM, Richard Sandiford wrote: Michael Collison writes: Here is a modified patch that takes your comments into account. Breaking on depth == 0 with '>' does not work due to the code looking for whitespace. What goes wrong? Just to make sure we're talking about the same thin

Re: [PATCH, PR 57195] Allow mode iterators inside angle brackets

2015-09-14 Thread Richard Sandiford
Michael Collison writes: > Here is a modified patch that takes your comments into account. Breaking > on depth == 0 with '>' does not work due to the code looking for whitespace. What goes wrong? Just to make sure we're talking about the same thing, I meant that in: (match_operand:FOO> ...

Re: [PATCH, PR 57195] Allow mode iterators inside angle brackets

2015-09-09 Thread Michael Collison
Richard, Here is a modified patch that takes your comments into account. Breaking on depth == 0 with '>' does not work due to the code looking for whitespace. 2015-08-25 Michael Collison PR other/57195 * read-md.c (read_name): Allow mode iterators inside angle brackets in rtl e

Re: [PATCH, PR 57195] Allow mode iterators inside angle brackets

2015-09-07 Thread Richard Sandiford
Michael Collison writes: > This patch allow mode iterators inside angle brackets in machine > description files. I discovered the issue when attempting to use > iterators on match_operand's as follows: > > match_operand: 0 "s_register_operand" "=w") > > The function 'read_name' is nor properly han

Re: [PING][PATCH, PR 57195] Allow mode iterators inside angle brackets

2015-08-31 Thread Mike Stump
On Aug 30, 2015, at 8:36 PM, Michael Collison wrote: > Ping. Originally posted here: > > https://gcc.gnu.org/ml/gcc-patches/2015-08/msg01475.html I looked at the patch and wondered if I had worked around the lack of the feature in my port. I didn’t find any evidence of that, but the patch loo

[PING][PATCH, PR 57195] Allow mode iterators inside angle brackets

2015-08-30 Thread Michael Collison
Ping. Originally posted here: https://gcc.gnu.org/ml/gcc-patches/2015-08/msg01475.html Regards, Michael Collison

[PATCH, PR 57195] Allow mode iterators inside angle brackets

2015-08-25 Thread Michael Collison
This patch allow mode iterators inside angle brackets in machine description files. I discovered the issue when attempting to use iterators on match_operand's as follows: match_operand: 0 "s_register_operand" "=w") The function 'read_name' is nor properly handling ':' inside angle brackets. B