Re: [openacc] clean up acc directive matching in fortran

2016-06-17 Thread Jakub Jelinek
On Fri, Jun 17, 2016 at 10:40:40AM +0200, Tobias Burnus wrote: > Cesar Philippidis wrote: > > On 06/16/2016 08:30 PM, Cesar Philippidis wrote: > > > This patch introduces a match_acc function to the fortran FE. It's > > > almost identical to match_omp, but it passes openacc = true to > > >

Re: [openacc] clean up acc directive matching in fortran

2016-06-17 Thread Tobias Burnus
Cesar Philippidis wrote: > On 06/16/2016 08:30 PM, Cesar Philippidis wrote: > > This patch introduces a match_acc function to the fortran FE. It's > > almost identical to match_omp, but it passes openacc = true to > > gfc_match_omp_clauses. I supposed I could have consolidated those two > >

[openacc] clean up acc directive matching in fortran

2016-06-16 Thread Cesar Philippidis
This patch introduces a match_acc function to the fortran FE. It's almost identical to match_omp, but it passes openacc = true to gfc_match_omp_clauses. I supposed I could have consolidated those two functions, but they are reasonably simple so I left them separate. Maybe a follow up patch can

Re: [openacc] clean up acc directive matching in fortran

2016-06-16 Thread Cesar Philippidis
On 06/16/2016 08:30 PM, Cesar Philippidis wrote: > This patch introduces a match_acc function to the fortran FE. It's > almost identical to match_omp, but it passes openacc = true to > gfc_match_omp_clauses. I supposed I could have consolidated those two > functions, but they are reasonably simple