Re: [gomp4] Fix tile parsing

2016-09-27 Thread Nathan Sidwell
On 09/27/16 14:17, Nathan Sidwell wrote: On 09/27/16 14:07, Jakub Jelinek wrote: +case OMP_CLAUSE_TILE: + /* These clauses really need a positive integral constant + expression, but we don't have a predicate for that + (yet). */ + needs_ice = true; + /* FALLT

Re: [gomp4] Fix tile parsing

2016-09-27 Thread Nathan Sidwell
On 09/27/16 14:07, Jakub Jelinek wrote: + case OMP_CLAUSE_TILE: + /* These clauses really need a positive integral constant +expression, but we don't have a predicate for that +(yet). */ + needs_ice = true; + /* FALLTHRU */ But why do you

Re: [gomp4] Fix tile parsing

2016-09-27 Thread Jakub Jelinek
On Fri, Sep 23, 2016 at 07:14:00AM -0400, Nathan Sidwell wrote: > --- c/c-parser.c (revision 240420) > +++ c/c-parser.c (working copy) > @@ -10882,6 +10882,7 @@ c_parser_omp_clause_collapse (c_parser * >location_t loc; > >check_no_duplicate_clause (list, OMP_CLAUSE_COLLAPSE, "co