Re: [PATCH][AArch64] Handle iterator definitions with conditionals in geniterator.sh

2016-06-16 Thread James Greenhalgh
On Thu, Jun 16, 2016 at 09:31:19AM +0100, Szabolcs Nagy wrote: > Turn the following definition in iterators.md > > (define_mode_iterator XXX [(YYY "condition") ZZZ]) > > into > > #define BUILTIN_XXX(T, N, MAP) \ > VAR2 (T, N, MAP, yyy, zzz) > > previously geniterators.sh skipped definitions w

[PATCH][AArch64] Handle iterator definitions with conditionals in geniterator.sh

2016-06-16 Thread Szabolcs Nagy
Turn the following definition in iterators.md (define_mode_iterator XXX [(YYY "condition") ZZZ]) into #define BUILTIN_XXX(T, N, MAP) \ VAR2 (T, N, MAP, yyy, zzz) previously geniterators.sh skipped definitions with conditions. gcc/ChangeLog: 2016-06-16 Szabolcs Nagy * config/aarc